*****************************************************************************/
// needed to resolve the conflict between global T and macro parameter T
-#define _WX_ERROR_REMOVE2(x) wxT("bad index in " #x "::Remove()")
+
+// VC++ can't cope with string concatenation in Unicode mode
+#if defined(wxUSE_UNICODE) && wxUSE_UNICODE
+#define _WX_ERROR_REMOVE2(x) wxT("bad index in ::RemoveAt()")
+#else
+#define _WX_ERROR_REMOVE2(x) wxT("bad index in " #x "::RemoveAt()")
+#endif
// macro implements remaining (not inline) methods of template list
// (it's private to this file)
DoCopy(src); \
} \
\
-void name::Empty() \
+void name::DoEmpty() \
{ \
for ( size_t ui = 0; ui < Count(); ui++ ) \
delete (T*)wxBaseArray::Item(ui); \
- \
- 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) \