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
This commit is contained in:
Vadim Zeitlin 2009-02-26 18:59:03 +00:00
parent 8cc208e39f
commit 36835e02e3

View File

@ -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);