X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/925f7740663f38ed8296ddb247754a9d62152aea..df53be12c55c077d9c2e1c479a1552188638495c:/include/wx/motif/radiobut.h?ds=sidebyside diff --git a/include/wx/motif/radiobut.h b/include/wx/motif/radiobut.h index 7ed22be9b9..71b5b72b5a 100644 --- a/include/wx/motif/radiobut.h +++ b/include/wx/motif/radiobut.h @@ -12,12 +12,12 @@ #ifndef _WX_RADIOBUT_H_ #define _WX_RADIOBUT_H_ -class WXDLLEXPORT wxRadioButton: public wxControl +class WXDLLIMPEXP_CORE wxRadioButton: public wxControl { DECLARE_DYNAMIC_CLASS(wxRadioButton) public: wxRadioButton(); - ~wxRadioButton() { RemoveFromCycle(); } + virtual ~wxRadioButton() { RemoveFromCycle(); } inline wxRadioButton(wxWindow *parent, wxWindowID id, const wxString& label, @@ -48,6 +48,8 @@ public: // clears the selection in the radiobuttons in the cycle // and returns the old selection (if any) wxRadioButton* ClearSelections(); +protected: + virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; } private: wxRadioButton* AddInCycle(wxRadioButton* cycle); void RemoveFromCycle();