]> git.saurik.com Git - wxWidgets.git/commitdiff
correction to the changes of r49805 to make the code work as expected
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 13 Nov 2007 16:16:04 +0000 (16:16 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 13 Nov 2007 16:16:04 +0000 (16:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49913 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/msw/window.cpp

index 8037b29d9d8fd5dde846251f2ef89cef3744307d..40793fa535f6f43658360e89f9dc98f09e5256e7 100644 (file)
@@ -2261,9 +2261,13 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
                             wxWindow *win = this;
                             if ( !bCtrlDown )
                             {
+                                // this will contain the dialog code of this
+                                // window and all of its parent windows
+                                LONG lDlgCode2 = lDlgCode;
+
                                 while ( win && !win->IsTopLevel() )
                                 {
-                                    if ( lDlgCode & DLGC_WANTMESSAGE )
+                                    if ( lDlgCode2 & DLGC_WANTMESSAGE )
                                     {
                                         // as it wants to process Enter itself,
                                         // don't call IsDialogMessage() which
@@ -2271,6 +2275,14 @@ bool wxWindowMSW::MSWProcessMessage(WXMSG* pMsg)
                                         return false;
                                     }
 
+                                    lDlgCode2 = ::SendMessage
+                                                  (
+                                                    GetHwndOf(win),
+                                                    WM_GETDLGCODE,
+                                                    0,
+                                                    0
+                                                  );
+
                                     win = win->GetParent();
                                 }
                             }