From: Vadim Zeitlin Date: Thu, 18 Nov 1999 16:14:10 +0000 (+0000) Subject: Remove() -> RemoveAt() X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/32193feb839f5597211caad34e0e289f6273d9a5?ds=inline Remove() -> RemoveAt() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4616 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/dynarray.h b/include/wx/dynarray.h index 07f3f673bf..fc49a0f260 100644 --- a/include/wx/dynarray.h +++ b/include/wx/dynarray.h @@ -308,7 +308,7 @@ public: \ \ T* Detach(size_t uiIndex) \ { T* p = (T*)wxBaseArray::Item(uiIndex); \ - wxBaseArray::Remove(uiIndex); return p; } \ + wxBaseArray::RemoveAt(uiIndex); return p; } \ void Remove(size_t uiIndex) { RemoveAt(uiIndex); } \ void RemoveAt(size_t uiIndex); \ \