X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e64df9bcc331d49d05a6dc7729ee08071e4c6408..2c326adae6bcbcc9510710116ae9eb4b5581192d:/include/wx/statline.h diff --git a/include/wx/statline.h b/include/wx/statline.h index d3757e45cf..7bd1939ceb 100644 --- a/include/wx/statline.h +++ b/include/wx/statline.h @@ -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) }; // ----------------------------------------------------------------------------