#endif
#include "wx/thread.h"
+#include "wx/modalhook.h"
#include "wx/osx/uma.h"
int wxMessageDialog::ShowModal()
{
+ WX_HOOK_MODAL_DIALOG();
+
int resultbutton = wxID_CANCEL;
const long style = GetMessageDialogStyle();
//
// if the extended text is not empty we ignore the caption
// and use the message and the extended message
-
-
+
+
wxString msgtitle,msgtext;
if(m_extendedMessage.IsEmpty())
{
}
}
}
-
+
SetReturnCode(resultbutton);
return resultbutton;