+void wxRadioButton::RemoveFromCycle()
+{
+ if (m_cycle==NULL || m_cycle == this)
+ {
+ return;
+ }
+ else
+ {
+ // Find the previous one and make it point to the next one
+ wxRadioButton* prev = this;
+ while (prev->m_cycle != this)
+ prev = prev->m_cycle;
+ prev->m_cycle = m_cycle;
+ }
+}
+