comdlg32: Make FALSE the "fall through" return value of PRINTDLG_DefaultPagePaintHook()

Andrew Talbot andrew.talbot at talbotville.com
Wed Dec 31 17:29:20 CST 2008


In actual fact, the affected line is currently unreachable, but I intend to fix
that subsequently.

-- Andy.
---
Changelog:
    comdlg32: Make FALSE the "fall through" return value of PRINTDLG_DefaultPagePaintHook().

diff --git a/dlls/comdlg32/printdlg.c b/dlls/comdlg32/printdlg.c
index 69767e7..1270bd8 100644
--- a/dlls/comdlg32/printdlg.c
+++ b/dlls/comdlg32/printdlg.c
@@ -3165,7 +3165,7 @@ PRINTDLG_DefaultPagePaintHook(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM lPa
             FIXME("Unknown message %x\n",uMsg);
             return FALSE;
     }
-    return TRUE;
+    return FALSE;
 }
 
 /***********************************************************************



More information about the wine-patches mailing list