};
wxMDIParentFrame::wxMDIParentFrame( wxWindow *parent,
- const wxWindowID id, const wxString& title,
+ wxWindowID id, const wxString& title,
const wxPoint& pos, const wxSize& size,
- const long style, const wxString& name )
+ long style, const wxString& name )
{
m_clientWindow = NULL;
m_currentChild = NULL;
};
bool wxMDIParentFrame::Create( wxWindow *parent,
- const wxWindowID id, const wxString& title,
+ wxWindowID id, const wxString& title,
const wxPoint& pos, const wxSize& size,
- const long style, const wxString& name )
+ long style, const wxString& name )
{
wxFrame::Create( parent, id, title, pos, size, style, name );
};
wxMDIChildFrame::wxMDIChildFrame( wxMDIParentFrame *parent,
- const wxWindowID id, const wxString& title,
+ wxWindowID id, const wxString& title,
const wxPoint& pos, const wxSize& size,
- const long style, const wxString& name )
+ long style, const wxString& name )
{
Create( parent, id, title, pos, size, style, name );
};
};
bool wxMDIChildFrame::Create( wxMDIParentFrame *parent,
- const wxWindowID id, const wxString& title,
+ wxWindowID id, const wxString& title,
const wxPoint& pos, const wxSize& size,
- const long style, const wxString& name )
+ long style, const wxString& name )
{
m_title = title;
return wxPanel::Create( parent->GetClientWindow(), id, pos, size, style, name );
{
};
-wxMDIClientWindow::wxMDIClientWindow( wxMDIParentFrame *parent, const long style )
+wxMDIClientWindow::wxMDIClientWindow( wxMDIParentFrame *parent, long style )
{
CreateClient( parent, style );
};
{
};
-bool wxMDIClientWindow::CreateClient( wxMDIParentFrame *parent, const long style )
+bool wxMDIClientWindow::CreateClient( wxMDIParentFrame *parent, long style )
{
m_needParent = TRUE;