wineps.drv: Make the Apply button useable

André Hentschel nerv at dawncrow.de
Wed Jun 2 10:12:22 CDT 2010


Sorry for the bits of code cleanup, but it looked so ugly!
Fix for bug 13895 (1.2)
---
 dlls/wineps.drv/driver.c |   17 +++++++++--------
 1 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/dlls/wineps.drv/driver.c b/dlls/wineps.drv/driver.c
index 25cf0eb..b5d1e90 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;
     }
-- 

Best Regards, André Hentschel



More information about the wine-patches mailing list