Overrode wxMDIChildFrame's DoSetSize to not misplace

the window when it was using wxFrame's method.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15727 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
2002-06-02 14:24:29 +00:00
parent 2dde25b981
commit ac0c857aaa
4 changed files with 30 additions and 22 deletions

View File

@@ -184,6 +184,11 @@ public:
bool m_justInserted;
protected:
// override wxFrame methods to not do anything
virtual void DoSetSize(int x, int y,
int width, int height,
int sizeFlags = wxSIZE_AUTO);
virtual void DoSetClientSize(int width, int height);
virtual void DoGetClientSize( int *width, int *height ) const;
private: