From 8f2a1b9c01007b1780ed3e0a983b13792a568970 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Sat, 15 Apr 2000 10:26:25 +0000 Subject: [PATCH] Added Stefan's fix for messages being incorrectly ignored. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_2_BRANCH@7174 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os2/window.cpp b/src/os2/window.cpp index d62acedc44..cb386ae1bc 100644 --- a/src/os2/window.cpp +++ b/src/os2/window.cpp @@ -1813,7 +1813,7 @@ MRESULT EXPENTRY wxWndProc( { if (pWnd) rc = pWnd->OS2WindowProc(ulMsg, wParam, lParam); - else + if(!rc) rc = ::WinDefWindowProc(hWnd, ulMsg, wParam, lParam); } return rc;