#include "wx/font.h"
#include "wx/settings.h"
#include "wx/dialog.h"
+#include "wx/msgdlg.h"
+#include "wx/file.h"
#if wxUSE_WX_RESOURCES
#include "wx/resource.h"
// from some safely-looking functions
if ( wxTheApp->IsInAssert() )
{
+ // But repaint the assertion message if necessary
+ if (wxTopLevelWindows.GetCount() > 0)
+ {
+ wxWindow* win = (wxWindow*) wxTopLevelWindows.Last()->Data();
+ if (win->IsKindOf(CLASSINFO(wxGenericMessageDialog)))
+ win->OnInternalIdle();
+ }
return TRUE;
}
#endif // __WXDEBUG__
event.SetEventObject(win);
win->GetEventHandler()->ProcessEvent(event);
-
+
if (event.MoreRequested())
needMore = TRUE;