#ifndef WX_PRECOMP
#include "wx/intl.h"
+ #include "wx/menu.h"
+ #include "wx/dialog.h"
#endif
#include "wx/notebook.h"
-#include "wx/dialog.h"
-#include "wx/menu.h"
#include "wx/gtk/private.h"
#include <glib.h>
// globals
//-----------------------------------------------------------------------------
-extern wxList wxPendingDelete;
-
//-----------------------------------------------------------------------------
// "switch_page"
//-----------------------------------------------------------------------------
return true;
}
-void wxMDIParentFrame::GtkOnSize( int x, int y, int width, int height )
+void wxMDIParentFrame::GtkOnSize()
{
- wxFrame::GtkOnSize( x, y, width, height );
+ wxFrame::GtkOnSize();
wxMDIChildFrame *child_frame = GetActiveChild();
if (!child_frame) return;
}
}
-void wxMDIParentFrame::DoGetClientSize(int *width, int *height ) const
-{
- wxFrame::DoGetClientSize( width, height );
-}
-
wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
{
if (!m_clientWindow) return (wxMDIChildFrame*) NULL;