Don't centre the frame on WinCE

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38296 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart 2006-03-23 11:35:56 +00:00
parent 90675b9582
commit acd8510fd2

View File

@ -383,7 +383,9 @@ bool MyApp::OnInit()
myCanvas = new MyCanvas(frame);
myCanvas->SetBackgroundColour(*wxWHITE);
#ifndef __WXWINCE__
frame->Centre(wxBOTH);
#endif
// Show the frame
frame->Show(true);