fix crash because of a missing wxOK constant
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57841 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
5f172ca3c9
commit
954360caca
@ -161,7 +161,7 @@ void MyDialog::OnAbout(wxCommandEvent& WXUNUSED(event))
|
||||
#if defined(__WXMSW__) && wxUSE_TASKBARICON_BALLOONS
|
||||
m_taskBarIcon->ShowBalloon(title, message, 15000, wxICON_INFORMATION);
|
||||
#else // !__WXMSW__
|
||||
wxMessageBox(message, title, wxICON_INFORMATION, this);
|
||||
wxMessageBox(message, title, wxICON_INFORMATION|wxOK, this);
|
||||
#endif // __WXMSW__/!__WXMSW__
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user