]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/vector.h
avoid infinite recursion for richtooltops, (hopefully) fixes #15070
[wxWidgets.git] / interface / wx / vector.h
index 02e1a2728bc6916eb83b33b42d306fa28780194f..21aaca576308d45ab74bedb41c603adefafcc182 100644 (file)
@@ -61,6 +61,15 @@ public:
     */
     ~wxVector();
 
+    /**
+        Resizes the vector to @a n and assigns @a v to all elements.
+
+        @see resize()
+
+        @since 2.9.5
+     */
+    void assign(size_type n, const value_type& v);
+
     /**
         Returns item at position @a idx.
     */
@@ -103,7 +112,7 @@ public:
 
 
     /**
-        Returns vector's current capacity, i.e. how much memory is allocated.
+        Returns vector's current capacity, i.e.\ how much memory is allocated.
 
         @see reserve()
     */