#pragma hdrstop
#endif
+#if wxUSE_MSGDLG
+
#ifndef WX_PRECOMP
#include "wx/utils.h"
#include "wx/dialog.h"
{
m_dialogStyle = style;
- wxBeginBusyCursor();
-
wxBoxSizer *topsizer = new wxBoxSizer( wxVERTICAL );
wxBoxSizer *icon_text = new wxBoxSizer( wxHORIZONTAL );
if (style & wxICON_MASK)
{
wxStaticBitmap *icon = new wxStaticBitmap(
- this, -1, wxTheApp->GetStdIcon(style & wxICON_MASK));
+ this, -1, wxTheApp->GetStdIcon((int)(style & wxICON_MASK)));
icon_text->Add( icon, 0, wxCENTER );
}
if (size.x < size.y*3/2)
{
size.x = size.y*3/2;
- SetSize( size );
+ SetSize( size );
}
Centre( wxBOTH | wxCENTER_FRAME);
-
- wxEndBusyCursor();
}
void wxGenericMessageDialog::OnYes(wxCommandEvent& WXUNUSED(event))
}
}
+#endif // wxUSE_MSGDLG