From: Vadim Zeitlin Date: Thu, 26 Feb 2009 18:59:03 +0000 (+0000) Subject: fix Remove() argument in the example (closes #10521) X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/36835e02e36b2d99f7a4d85cdbdec0968cec767a fix Remove() argument in the example (closes #10521) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59166 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/interface/wx/dynarray.h b/interface/wx/dynarray.h index 84c4e16e0a..6001afe745 100644 --- a/interface/wx/dynarray.h +++ b/interface/wx/dynarray.h @@ -546,12 +546,14 @@ public: @code T *item = array[n]; + array.Remove(item); delete item; - array.Remove(n); @endcode See also WX_CLEAR_ARRAY() macro which deletes all elements of a wxArray (supposed to contain pointers). + + @see RemoveAt() */ void Remove(T item);