From 96c0183f319f5fa2a2151a1a1554db22c7b00307 Mon Sep 17 00:00:00 2001 From: David Elliott Date: Fri, 26 Mar 2004 03:14:16 +0000 Subject: [PATCH] Make wxCocoa work with wxUSE_STL==1: Use Erase instead of DeleteNode git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@26351 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/cocoa/radiobut.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cocoa/radiobut.mm b/src/cocoa/radiobut.mm index ab8197bd60..5c4b6759d6 100644 --- a/src/cocoa/radiobut.mm +++ b/src/cocoa/radiobut.mm @@ -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) -- 2.45.2