Remove unneeded overrides

These just forward to the base class
This commit is contained in:
Paul Cornett
2019-04-05 10:54:54 -07:00
parent fe1737d399
commit 794c1374b8
12 changed files with 0 additions and 57 deletions

View File

@@ -193,13 +193,6 @@ bool wxRadioBox::IsItemEnabled(unsigned int item) const
return current->IsEnabled();
}
// Returns the radiobox label
//
wxString wxRadioBox::GetLabel() const
{
return wxControl::GetLabel();
}
// Returns the label for the given button
//
wxString wxRadioBox::GetString(unsigned int item) const
@@ -238,13 +231,6 @@ int wxRadioBox::GetSelection() const
return i;
}
// Sets the radiobox label
//
void wxRadioBox::SetLabel(const wxString& label)
{
return wxControl::SetLabel( label );
}
// Sets the label of a given button
//
void wxRadioBox::SetString(unsigned int item,const wxString& label)