X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/e90c1d2a19361551eb07778280f22be3e759cf64..171774fcf39d89d62bccc2e035d44f2f3a6495e7:/include/wx/arrimpl.cpp diff --git a/include/wx/arrimpl.cpp b/include/wx/arrimpl.cpp index 22a1239098..585893ccc7 100644 --- a/include/wx/arrimpl.cpp +++ b/include/wx/arrimpl.cpp @@ -21,7 +21,7 @@ *****************************************************************************/ // needed to resolve the conflict between global T and macro parameter T -#define _WX_ERROR_REMOVE2(x) T("bad index in " #x "::Remove()") +#define _WX_ERROR_REMOVE2(x) wxT("bad index in " #x "::RemoveAt()") // macro implements remaining (not inline) methods of template list // (it's private to this file) @@ -59,13 +59,13 @@ void name::Empty() \ wxBaseArray::Clear(); \ } \ \ -void name::Remove(size_t uiIndex) \ +void name::RemoveAt(size_t uiIndex) \ { \ wxCHECK_RET( uiIndex < Count(), _WX_ERROR_REMOVE2(name) ); \ \ delete (T*)wxBaseArray::Item(uiIndex); \ \ - wxBaseArray::Remove(uiIndex); \ + wxBaseArray::RemoveAt(uiIndex); \ } \ \ void name::Add(const T& item) \