toolbar: missing return

Huw D M Davies h.davies1 at physics.ox.ac.uk
Fri Feb 6 11:04:49 CST 2004


        Huw Davies <huw at codeweavers.com>
        Add a missing return
-- 
Huw Davies
huw at codeweavers.com
Index: dlls/comctl32/toolbar.c
===================================================================
RCS file: /home/wine/wine/dlls/comctl32/toolbar.c,v
retrieving revision 1.149
diff -u -r1.149 toolbar.c
--- dlls/comctl32/toolbar.c	3 Feb 2004 00:08:34 -0000	1.149
+++ dlls/comctl32/toolbar.c	6 Feb 2004 17:02:58 -0000
@@ -6023,7 +6023,7 @@
 	    return TOOLBAR_Notify (hwnd, wParam, lParam);
 
 	case WM_NOTIFYFORMAT:
-	    TOOLBAR_NotifyFormatFake (hwnd, wParam, lParam);
+	    return TOOLBAR_NotifyFormatFake (hwnd, wParam, lParam);
 
 	case WM_PAINT:
 	    return TOOLBAR_Paint (hwnd, wParam);



More information about the wine-patches mailing list