]> git.saurik.com Git - wxWidgets.git/commitdiff
Make wxCocoa work with wxUSE_STL==1: Use Erase instead of DeleteNode
authorDavid Elliott <dfe@tgwbd.org>
Fri, 26 Mar 2004 03:14:16 +0000 (03:14 +0000)
committerDavid Elliott <dfe@tgwbd.org>
Fri, 26 Mar 2004 03:14:16 +0000 (03:14 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26351 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/cocoa/radiobut.mm

index ab8197bd6001bc66af289b373108866af2aa07ad..5c4b6759d6b1dbba14034335a91b7508adcf326e 100644 (file)
@@ -95,7 +95,7 @@ wxRadioButton::~wxRadioButton()
             m_radioSlaves.GetFirst();
         wxASSERT(slaveNode);
         wxASSERT(slaveNode->GetData() == this);
-        m_radioSlaves.DeleteNode(slaveNode);
+        m_radioSlaves.Erase(slaveNode);
     
         // Now find the new master
         wxRadioButton *newMaster = NULL;
@@ -111,7 +111,7 @@ wxRadioButton::~wxRadioButton()
             wxASSERT(radioButton->m_radioMaster == this);
             radioButton->m_radioMaster = newMaster;
             newMaster->m_radioSlaves.Append(radioButton);
-            m_radioSlaves.DeleteNode(slaveNode);
+            m_radioSlaves.Erase(slaveNode);
         }
     }
     else if(m_radioMaster)