]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/statline.h
Quick hack to rid the code of wxDIALOG_MODAL
[wxWidgets.git] / include / wx / statline.h
index d3757e45cf99ea36df024dccc7113bf05d7ec40e..7bd1939cebdd32d2090f1cf833854bf76f479cba 100644 (file)
@@ -47,7 +47,9 @@ public:
     static int GetDefaultSize() { return 2; }
 
     // overriden base class virtuals
-    virtual bool AcceptsFocus() const { return FALSE; }
+    virtual bool AcceptsFocus() const { return false; }
+    virtual void ApplyParentThemeBackground(const wxColour& bg)
+        { SetBackgroundColour(bg); }
 
 protected:
     // set the right size for the right dimension
@@ -72,6 +74,8 @@ protected:
     {
         return AdjustSize(wxDefaultSize);
     }
+
+    DECLARE_NO_COPY_CLASS(wxStaticLineBase)
 };
 
 // ----------------------------------------------------------------------------