Christopher Thielen : comctl32: Ensure that toolbar respond only to changes in WM_CAPTURECHANGED handler.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 2 09:59:29 CST 2016


Module: wine
Branch: master
Commit: ff063d9e250310d3cf8d27371040609b97c24f6c
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=ff063d9e250310d3cf8d27371040609b97c24f6c

Author: Christopher Thielen <cthielen at gmail.com>
Date:   Sun Jan 31 20:26:47 2016 -0800

comctl32: Ensure that toolbar respond only to changes in WM_CAPTURECHANGED handler.

Signed-off-by: Christopher Thielen <cthielen at gmail.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/comctl32/toolbar.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/comctl32/toolbar.c b/dlls/comctl32/toolbar.c
index 890c18e..ae6f21e 100644
--- a/dlls/comctl32/toolbar.c
+++ b/dlls/comctl32/toolbar.c
@@ -6807,6 +6807,7 @@ ToolbarWindowProc (HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
 	    return TOOLBAR_MouseLeave (infoPtr);
 
 	case WM_CAPTURECHANGED:
+	    if (hwnd == (HWND)lParam) return 0;
 	    return TOOLBAR_CaptureChanged(infoPtr);
 
 	case WM_NCACTIVATE:




More information about the wine-cvs mailing list