remove unneeded DoGetClientSize

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41081 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2006-09-09 02:43:31 +00:00
parent 6934602337
commit 4bc4bae185
2 changed files with 0 additions and 7 deletions

View File

@@ -64,8 +64,6 @@ public:
protected:
void Init();
virtual void DoGetClientSize(int *width, int *height) const;
private:
friend class wxMDIChildFrame;

View File

@@ -241,11 +241,6 @@ void wxMDIParentFrame::OnInternalIdle()
}
}
void wxMDIParentFrame::DoGetClientSize(int *width, int *height ) const
{
wxFrame::DoGetClientSize( width, height );
}
wxMDIChildFrame *wxMDIParentFrame::GetActiveChild() const
{
if (!m_clientWindow) return (wxMDIChildFrame*) NULL;