]> git.saurik.com Git - wxWidgets.git/commitdiff
fix wxList<T>::resize description (fixes #10207)
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 22 Nov 2008 14:36:32 +0000 (14:36 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Sat, 22 Nov 2008 14:36:32 +0000 (14:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56906 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/list.h

index 44311a3d37a66f922e2fe1a31c10ec7d1ce5324e..eae8cd2cf280f16a7eb7ab504f4c3d806348476b 100644 (file)
@@ -369,9 +369,13 @@ public:
 
     /**
         Resizes the list.
-        If the the list is enlarges items with the value @e v are appended to the list.
+
+        If the list is longer than @a n, then items are removed until the list
+        becomes long @a n.
+        If the list is shorter than @a n items with the value @a v are appended
+        to the list until the list becomes long @a n.
     */
-    void resize(size_type n);
+    void resize(size_type n, value_type v = value_type());
 
     /**
         Reverses the list.