]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/stattext.h
compilation fixes (apparently, gcc <3.4 didn't validate code in templates that were...
[wxWidgets.git] / include / wx / stattext.h
index 60fd8ede0a0d424e06a444371f196140696d1987..8590052f74938221b45eccb6218c4ffaed5ff1ef 100644 (file)
@@ -10,8 +10,15 @@ WXDLLEXPORT_DATA(extern const wxChar*) wxStaticTextNameStr;
 class WXDLLEXPORT wxStaticTextBase : public wxControl
 {
 public:
-    // overriden base class virtuals
-    virtual bool AcceptsFocus() const { return FALSE; }
+    wxStaticTextBase() { }
+
+    // overriden base virtuals
+    virtual bool AcceptsFocus() const { return false; }
+    virtual void ApplyParentThemeBackground(const wxColour& bg)
+        { SetBackgroundColour(bg); }
+
+private:
+    DECLARE_NO_COPY_CLASS(wxStaticTextBase)
 };
 
 #if defined(__WXUNIVERSAL__)