]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/univ/statbox.h
make access specifiers for the virtual functions match their access in the base class...
[wxWidgets.git] / include / wx / univ / statbox.h
index f242c1bb03ffffe4578acae47d2bea70b8eaa3e7..333e1985dc3a411beb383986a805172a16f9dab1 100644 (file)
@@ -47,6 +47,10 @@ public:
     // take account of this
     virtual wxPoint GetBoxAreaOrigin() const;
 
+    // returning true from here ensures that we act as a container window for
+    // our children
+    virtual bool IsStaticBox() const { return true; }
+
 protected:
     // draw the control
     virtual void DoDraw(wxControlRenderer *renderer);
@@ -54,10 +58,6 @@ protected:
     // get the size of the border
     wxRect GetBorderGeometry() const;
 
-    // returning true from here ensures that we act as a container window for
-    // our children
-    virtual bool IsStaticBox() const { return true; }
-
 private:
     DECLARE_DYNAMIC_CLASS(wxStaticBox)
 };