Changes to make common and generic compilable under VisualAge C++ V3.0 ofr OS/2
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3238 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -81,7 +81,10 @@ public:
|
||||
virtual int ShowModal();
|
||||
virtual void EndModal(int retCode);
|
||||
|
||||
void SetClientSize(int width, int height);
|
||||
void SetClientSize(int width, int height) { wxWindow::DoSetClientSize(width, height); };
|
||||
void SetClientSize( const wxSize& size ) { wxWindow::DoSetClientSize(size.x, size.y); };
|
||||
void SetClientSize(const wxRect& rect) { SetClientSize( rect.width, rect.height ); };
|
||||
|
||||
void GetPosition(int *x, int *y) const;
|
||||
bool Show(bool show);
|
||||
void Iconize(bool iconize);
|
||||
|
Reference in New Issue
Block a user