don't omit wxOK in wxMessageBox() call

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59857 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2009-03-25 16:29:23 +00:00
parent 29e0c68ef5
commit e8c0d57346

View File

@@ -680,7 +680,7 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
{
(void)wxMessageBox(_T("wxWidgets menu sample\n(c) 1999-2001 Vadim Zeitlin"),
_T("About wxWidgets menu sample"),
wxICON_INFORMATION);
wxOK | wxICON_INFORMATION);
}
void MyFrame::OnDeleteMenu(wxCommandEvent& WXUNUSED(event))