git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@49913
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
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
return false;
}
+ lDlgCode2 = ::SendMessage
+ (
+ GetHwndOf(win),
+ WM_GETDLGCODE,
+ 0,
+ 0
+ );
+
win = win->GetParent();
}
}