// wxRadioButton
//-----------------------------------------------------------------------------
-IMPLEMENT_DYNAMIC_CLASS(wxRadioButton,wxControl)
-
bool wxRadioButton::Create( wxWindow *parent,
wxWindowID id,
const wxString& label,
{
wxCHECK_RET( m_widget != NULL, wxT("invalid radiobutton") );
+ // save the original label
+ wxControlBase::SetLabel(label);
+
GTKSetLabelForLabel(GTK_LABEL(GTK_BIN(m_widget)->child), label);
}