]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/stattext.h
some fixes for AIX compilation
[wxWidgets.git] / include / wx / msw / stattext.h
index 81595e993974436784baa3ee6a12d79a7e97045a..053651b819b6852e9fc817cffc3d775917e7cea2 100644 (file)
@@ -45,11 +45,6 @@ public:
         const wxString& name = wxStaticTextNameStr);
     
     // accessors
-    void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO);
-    void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO)
-    { wxWindow::SetSize(rect, sizeFlags); }
-    void SetSize(const wxSize& size)
-    { wxWindow::SetSize(size); }
     void SetLabel(const wxString& label);
     
     // operations
@@ -63,6 +58,11 @@ public:
     virtual WXHBRUSH OnCtlColor(WXHDC pDC, WXHWND pWnd, WXUINT nCtlColor,
         WXUINT message, WXWPARAM wParam, WXLPARAM lParam);
     virtual long MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
+
+protected:
+    virtual void DoSetSize(int x, int y,
+                           int width, int height,
+                           int sizeFlags = wxSIZE_AUTO);
 };
 
 #endif