- #ifdef __WINDOWS__
- if ( !s_bNoAsserts ) {
- strcat(szBuf, _("\nDo you want to stop the program?"
- "\nYou can also choose [Cancel] to suppress "
- "further warnings."));
-
- switch ( ::MessageBox(NULL, szBuf, _("Debug"),
- MB_YESNOCANCEL | MB_ICONINFORMATION) ) {
- case IDYES:
+ if ( !s_bNoAsserts ) {
+ strcat(szBuf, _("\nDo you want to stop the program?"
+ "\nYou can also choose [Cancel] to suppress "
+ "further warnings."));
+
+ switch ( wxMessageBox(_("Debug"), szBuf,
+ wxYES_NO | wxCANCEL | wxICON_STOP ) ) {
+ case wxYES:
+ #ifdef __WINDOWS__