]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/list.h
Add test for absence of events from wxSpinCtrlDouble ctor.
[wxWidgets.git] / interface / wx / list.h
index 7d2f566c631d56a4eb84dfef2542121f3d4e31e8..ac88a671c452bae1028cdfbd12a1327b18aac6e9 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        list.h
 // Purpose:     interface of wxList<T>
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -391,6 +390,13 @@ public:
         Returns the size of the list.
     */
     size_type size() const;
+
+    /**
+        Returns a wxVector holding the list elements.
+
+        @since 2.9.5
+    */
+    wxVector<T> AsVector() const;
 };