removed second parameter of wxFrame::DoGiveHelp(), the help string is always shown (even if it's empty), not hidden; this hopefully really fixes restoring the previously shown status bar text when the menu is dismissed

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45229 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-04-02 22:00:52 +00:00
parent ddeca22ce8
commit fa36fe3680
4 changed files with 32 additions and 42 deletions

View File

@@ -1055,7 +1055,7 @@ bool wxFrame::HandleMenuSelect( WXWORD nItem,
}
else
{
DoGiveHelp(wxEmptyString, false);
DoGiveHelp(wxEmptyString);
return false;
}
}