// RCS-ID: $Id$
// Copyright: (c) 1998 Julian Smart
// (c) 2008 Vadim Zeitlin
-// Licence: wxWindows license
+// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
/*
CreateMenuBarForFrame(frame, menuFile, m_menuEdit);
frame->SetIcon(wxICON(doc));
- frame->Centre(wxBOTH);
- frame->Show(true);
+ frame->Centre();
+ frame->Show();
- SetTopWindow(frame);
return true;
}
frame->SetMenuBar(menubar);
}
-wxFrame *MyApp::CreateChildFrame(wxDocument *doc, wxView *view, bool isCanvas)
+wxFrame *MyApp::CreateChildFrame(wxView *view, bool isCanvas)
{
// create a child frame of appropriate class for the current mode
wxFrame *subframe;
+ wxDocument *doc = view->GetDocument();
#if wxUSE_MDI_ARCHITECTURE
if ( GetMode() == Mode_MDI )
{
wxSize(300, 300)
);
- subframe->Centre(wxBOTH);
+ subframe->Centre();
}
wxMenu *menuFile = new wxMenu;