+
+void wxRadioBox::DoSetItemToolTip(unsigned int n, wxToolTip *tooltip)
+{
+ wxCharBuffer buf;
+ if ( !tooltip )
+ tooltip = GetToolTip();
+ if ( tooltip )
+ buf = wxGTK_CONV(tooltip->GetTip());
+
+ wxToolTip::Apply(GTK_WIDGET(m_buttons[n]), buf);
+}
+