Removing const for first version

This commit is contained in:
Stefan Csomor
2020-09-17 22:46:18 +02:00
parent 92ea83f00b
commit 552dbbe26e

View File

@@ -47,22 +47,22 @@ public:
wxRadioButtonBase() { }
wxRadioButton* GetFirstInGroup() const
wxRadioButton* GetFirstInGroup()
{
return wxGetFirstButtonInGroup( static_cast<wxRadioButton*>(this));
}
wxRadioButton* GetLastInGroup() const
wxRadioButton* GetLastInGroup()
{
return wxGetLastButtonInGroup( static_cast<wxRadioButton*>(this));
}
wxRadioButton* GetPreviousInGroup() const
wxRadioButton* GetPreviousInGroup()
{
return wxGetPreviousButtonInGroup( static_cast<wxRadioButton*>(this));
}
wxRadioButton* GetNextInGroup() const
wxRadioButton* GetNextInGroup()
{
return wxGetNextButtonInGroup( static_cast<wxRadioButton*>(this));
}