From 9aa9a1229f2195a8b3ac575645a10242ae6e9bc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Hentschel?= Date: Wed, 2 Jun 2010 17:12:22 +0200 Subject: [PATCH] wineps.drv: Make the Apply button useable. --- dlls/wineps.drv/driver.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/dlls/wineps.drv/driver.c b/dlls/wineps.drv/driver.c index 25cf0eb6bee..b5d1e9027f2 100644 --- a/dlls/wineps.drv/driver.c +++ b/dlls/wineps.drv/driver.c @@ -236,26 +236,27 @@ static INT_PTR CALLBACK PSDRV_PaperDlgProc(HWND hwnd, UINT msg, if(i >= Cursel) break; i++; } - TRACE("Setting pagesize to item %d Winpage = %d\n", Cursel, - ps->WinPage); - di->dlgdm->dmPublic.u1.s1.dmPaperSize = ps->WinPage; + TRACE("Setting pagesize to item %d Winpage = %d\n", Cursel, ps->WinPage); + di->dlgdm->dmPublic.u1.s1.dmPaperSize = ps->WinPage; + SendMessageW(GetParent(hwnd), PSM_CHANGED, 0, 0); } break; case IDD_ORIENT_PORTRAIT: case IDD_ORIENT_LANDSCAPE: TRACE("Setting orientation to %s\n", wParam == IDD_ORIENT_PORTRAIT ? - "portrait" : "landscape"); + "portrait" : "landscape"); di->dlgdm->dmPublic.u1.s1.dmOrientation = wParam == IDD_ORIENT_PORTRAIT ? - DMORIENT_PORTRAIT : DMORIENT_LANDSCAPE; + DMORIENT_PORTRAIT : DMORIENT_LANDSCAPE; + SendMessageW(GetParent(hwnd), PSM_CHANGED, 0, 0); break; case IDD_DUPLEX: if(HIWORD(wParam) == CBN_SELCHANGE) { Cursel = SendDlgItemMessageA(hwnd, LOWORD(wParam), CB_GETCURSEL, 0, 0); for(i = 0, duplex = di->pi->ppd->Duplexes; i < Cursel; i++, duplex = duplex->next) ; - TRACE("Setting duplex to item %d Winduplex = %d\n", Cursel, - duplex->WinDuplex); - di->dlgdm->dmPublic.dmDuplex = duplex->WinDuplex; + TRACE("Setting duplex to item %d Winduplex = %d\n", Cursel, duplex->WinDuplex); + di->dlgdm->dmPublic.dmDuplex = duplex->WinDuplex; + SendMessageW(GetParent(hwnd), PSM_CHANGED, 0, 0); } break; }