+ const unsigned count = m_labels.size();
+ for( unsigned i = 0; i < count; i++ )
+ {
+#if wxUSE_TOOLTIPS
+ if ( !m_tooltips[i].empty() )
+ control->SetItemToolTip(i, m_tooltips[i]);
+#endif // wxUSE_TOOLTIPS
+#if wxUSE_HELP
+ if ( m_helptextSpecified[i] )
+ control->SetItemHelpText(i, m_helptexts[i]);
+#endif // wxUSE_HELP
+
+ if ( !m_isShown[i] )
+ control->Show(i, false);
+ if ( !m_isEnabled[i] )
+ control->Enable(i, false);
+ }
+
+
+ // forget information about the items of this radiobox, we should start
+ // afresh for the next one
+ m_labels.clear();
+
+#if wxUSE_TOOLTIPS
+ m_tooltips.clear();
+#endif // wxUSE_TOOLTIPS
+
+#if wxUSE_HELP
+ m_helptexts.clear();
+ m_helptextSpecified.clear();
+#endif // wxUSE_HELP
+
+ m_isShown.clear();
+ m_isEnabled.clear();