From fff86b2918200ec9496a317edb61c68af66a6c08 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 31 Jan 1999 23:52:39 +0000 Subject: [PATCH] wxControl::MSWNotify() handler calls wxWindow version if it doesn't process the message (some messages were "missing" before due to this bug) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1544 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/control.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/msw/control.cpp b/src/msw/control.cpp index a0bcf8dff2..72c54d7704 100644 --- a/src/msw/control.cpp +++ b/src/msw/control.cpp @@ -189,7 +189,7 @@ long wxControl::MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam) } bool wxControl::MSWNotify(WXWPARAM wParam, WXLPARAM lParam, - WXLPARAM* WXUNUSED(result)) + WXLPARAM* result) { #if defined(__WIN95__) wxCommandEvent event(wxEVT_NULL, m_windowId); @@ -240,7 +240,7 @@ bool wxControl::MSWNotify(WXWPARAM wParam, WXLPARAM lParam, } */ default: - return FALSE; + return wxWindow::MSWNotify(wParam, lParam, result); } event.SetEventType(eventType);