]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/window.cpp
Needed some variation; got bored of seeing the compilation errors for this
[wxWidgets.git] / src / msw / window.cpp
index 0442867815c35340b417ae9d282a155d492bd3aa..8d185d64205bef6d592f33a9b3112e22c0daccc0 100644 (file)
@@ -1422,7 +1422,7 @@ void wxWindow::GetCaretPos(int *x, int *y) const
 // popup menu
 // ---------------------------------------------------------------------------
 
-bool wxWindow::PopupMenu(wxMenu *menu, int x, int y)
+bool wxWindow::DoPopupMenu(wxMenu *menu, int x, int y)
 {
     menu->SetInvokingWindow(this);
     menu->UpdateUI();
@@ -1540,7 +1540,7 @@ bool wxWindow::MSWProcessMessage(WXMSG* pMsg)
                                 btn = panel->GetDefaultItem();
                             }
 
-                            if ( btn )
+                            if ( btn && btn->IsEnabled() )
                             {
                                 // if we do have a default button, do press it
                                 btn->MSWCommand(BN_CLICKED, 0 /* unused */);