diff --git a/include/wx/radiobut.h b/include/wx/radiobut.h index dec331af73..02dadc5ff9 100644 --- a/include/wx/radiobut.h +++ b/include/wx/radiobut.h @@ -47,22 +47,22 @@ public: wxRadioButtonBase() { } - wxRadioButton* GetFirstInGroup() const + wxRadioButton* GetFirstInGroup() { return wxGetFirstButtonInGroup( static_cast(this)); } - wxRadioButton* GetLastInGroup() const + wxRadioButton* GetLastInGroup() { return wxGetLastButtonInGroup( static_cast(this)); } - wxRadioButton* GetPreviousInGroup() const + wxRadioButton* GetPreviousInGroup() { return wxGetPreviousButtonInGroup( static_cast(this)); } - wxRadioButton* GetNextInGroup() const + wxRadioButton* GetNextInGroup() { return wxGetNextButtonInGroup( static_cast(this)); }