X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/94aff5ff86189e39b7a95fc62e886374c060a2cf..f4dda581a49f46d468a8d8aefc31f37aca3ef7d1:/include/wx/button.h?ds=sidebyside diff --git a/include/wx/button.h b/include/wx/button.h index 89bef2b6b5..250f53129c 100644 --- a/include/wx/button.h +++ b/include/wx/button.h @@ -45,15 +45,15 @@ #include "wx/control.h" -class WXDLLEXPORT wxBitmap; +class WXDLLIMPEXP_FWD_CORE wxBitmap; -extern WXDLLEXPORT_DATA(const wxChar) wxButtonNameStr[]; +extern WXDLLIMPEXP_DATA_CORE(const char) wxButtonNameStr[]; // ---------------------------------------------------------------------------- // wxButton: a push button // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxButtonBase : public wxControl +class WXDLLIMPEXP_CORE wxButtonBase : public wxControl { public: wxButtonBase() { } @@ -78,6 +78,9 @@ public: static wxSize GetDefaultSize(); protected: + // choose the default border for this window + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } + DECLARE_NO_COPY_CLASS(wxButtonBase) };