return wxNO;
case wxID_CANCEL:
return wxCANCEL;
+ case wxID_HELP:
+ return wxHELP;
}
wxFAIL_MSG( wxT("unexpected return code from wxMessageDialog") );
wxMINOR_VERSION,
wxRELEASE_NUMBER,
msg,
- wxS("Copyright (c) 1995-2010 wxWidgets team"));
+ wxS("Copyright (c) 1995-2011 wxWidgets team"));
}
void wxInfoMessageBox(wxWindow* parent)
wxFont wxGetFontFromUser(wxWindow *parent, const wxFont& fontInit, const wxString& caption)
{
wxFontData data;
- if ( fontInit.Ok() )
+ if ( fontInit.IsOk() )
{
data.SetInitialFont(fontInit);
}