X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ed679e7422b03da13d979f78240e9a0300dfbcd0..a76342da418c75ead546ce2025db24dad261d237:/src/msw/frame.cpp diff --git a/src/msw/frame.cpp b/src/msw/frame.cpp index 1ca248342e..e8890f42f2 100644 --- a/src/msw/frame.cpp +++ b/src/msw/frame.cpp @@ -190,11 +190,15 @@ bool wxFrame::Create(wxWindow *parent, const wxString& name) { if ( !wxTopLevelWindow::Create(parent, id, title, pos, size, style, name) ) - return FALSE; + return false; SetBackgroundColour(wxSystemSettings::GetColour(wxSYS_COLOUR_APPWORKSPACE)); - return TRUE; +#ifdef __SMARTPHONE__ + SetLeftMenu(wxID_EXIT, _("Done")); +#endif + + return true; } wxFrame::~wxFrame()