]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/carbon/radiobut.cpp
remove the drag-and-drop compatibility hack for extracting the embedded size of the...
[wxWidgets.git] / src / mac / carbon / radiobut.cpp
index 6ecc2657bc0a9f4b9e7c682adf49354bc06e3b03..7f866d2536a798508dad6b75a2319fbe34c8f573 100644 (file)
@@ -33,7 +33,7 @@ bool wxRadioButton::Create( wxWindow *parent,
     if ( !wxControl::Create( parent, id, pos, size, style, validator, name ) )
         return false;
 
-    m_label = label;
+    m_labelOrig = m_label = label;
 
     Rect bounds = wxMacGetBoundsForControl( this, pos, size );
 
@@ -143,7 +143,7 @@ wxInt32 wxRadioButton::MacControlHit( WXEVENTHANDLERREF WXUNUSED(handler), WXEVE
 
 wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle)
 {
-    wxRadioButton *next, *current;
+    wxRadioButton *current;
 
     if (cycle == NULL)
     {
@@ -152,7 +152,7 @@ wxRadioButton *wxRadioButton::AddInCycle(wxRadioButton *cycle)
     else
     {
         current = cycle;
-        while ((next = current->m_cycle) != cycle)
+        while (current->m_cycle != cycle)
             current = current->m_cycle;
 
         m_cycle = cycle;