From 5fe384748c8bcb7752a0613a81e1273aeadc22c5 Mon Sep 17 00:00:00 2001 From: Stefan Csomor Date: Sat, 5 Jul 2003 19:48:05 +0000 Subject: [PATCH] changed Remove to RemoveAt git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@21680 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/choice.cpp | 2 +- src/mac/carbon/menu.cpp | 2 +- src/mac/choice.cpp | 2 +- src/mac/menu.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/mac/carbon/choice.cpp b/src/mac/carbon/choice.cpp index 86d75eb0da..fdd9b43da6 100644 --- a/src/mac/carbon/choice.cpp +++ b/src/mac/carbon/choice.cpp @@ -105,7 +105,7 @@ void wxChoice::Delete(int n) delete GetClientObject(n); } ::DeleteMenuItem( MAC_WXHMENU(m_macPopUpMenuHandle) , n + 1) ; - m_strings.Remove( n ) ; + m_strings.RemoveAt( n ) ; m_datas.RemoveAt( n ) ; SetControl32BitMaximum( (ControlHandle) m_macControl , GetCount()) ; } diff --git a/src/mac/carbon/menu.cpp b/src/mac/carbon/menu.cpp index 70ea0b4fba..83d1d2420a 100644 --- a/src/mac/carbon/menu.cpp +++ b/src/mac/carbon/menu.cpp @@ -755,7 +755,7 @@ wxMenu *wxMenuBar::Remove(size_t pos) Refresh(); } - m_titles.Remove(pos); + m_titles.RemoveAt(pos); return menu; } diff --git a/src/mac/choice.cpp b/src/mac/choice.cpp index 86d75eb0da..fdd9b43da6 100644 --- a/src/mac/choice.cpp +++ b/src/mac/choice.cpp @@ -105,7 +105,7 @@ void wxChoice::Delete(int n) delete GetClientObject(n); } ::DeleteMenuItem( MAC_WXHMENU(m_macPopUpMenuHandle) , n + 1) ; - m_strings.Remove( n ) ; + m_strings.RemoveAt( n ) ; m_datas.RemoveAt( n ) ; SetControl32BitMaximum( (ControlHandle) m_macControl , GetCount()) ; } diff --git a/src/mac/menu.cpp b/src/mac/menu.cpp index 70ea0b4fba..83d1d2420a 100644 --- a/src/mac/menu.cpp +++ b/src/mac/menu.cpp @@ -755,7 +755,7 @@ wxMenu *wxMenuBar::Remove(size_t pos) Refresh(); } - m_titles.Remove(pos); + m_titles.RemoveAt(pos); return menu; } -- 2.49.0