From 552dbbe26eae729f77a05799e9b7a926373c8754 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Thu, 17 Sep 2020 22:46:18 +0200 Subject: [PATCH] Removing const for first version --- include/wx/radiobut.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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)); }