X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/560689094552afb5326d50a2c803d14d26f12ea6..6a5c9ff8e8864c2a1540af521d9a93bae9617d93:/interface/wx/vector.h diff --git a/interface/wx/vector.h b/interface/wx/vector.h index 02e1a2728b..21aaca5763 100644 --- a/interface/wx/vector.h +++ b/interface/wx/vector.h @@ -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() */