X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1be7a35c5ec31b6cfcab9d969c7969586441a945..f01a77c7954ff4b7ee9f74af8df5a16f239d3537:/include/wx/statbox.h diff --git a/include/wx/statbox.h b/include/wx/statbox.h index efeeee65b2..e8f48c3eb3 100644 --- a/include/wx/statbox.h +++ b/include/wx/statbox.h @@ -18,13 +18,13 @@ #include "wx/control.h" -extern WXDLLEXPORT_DATA(const wxChar) wxStaticBoxNameStr[]; +extern WXDLLIMPEXP_DATA_CORE(const char) wxStaticBoxNameStr[]; // ---------------------------------------------------------------------------- // wxStaticBox: a grouping box with a label // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxStaticBoxBase : public wxControl +class WXDLLIMPEXP_CORE wxStaticBoxBase : public wxControl { public: wxStaticBoxBase() { } @@ -46,7 +46,10 @@ public: *borderOther = BORDER; } -private: +protected: + // choose the default border for this window + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } + DECLARE_NO_COPY_CLASS(wxStaticBoxBase) };