]> git.saurik.com Git - wxWidgets.git/commitdiff
minor corrections
authorRobert Roebling <robert@roebling.de>
Wed, 17 Sep 2008 18:08:46 +0000 (18:08 +0000)
committerRobert Roebling <robert@roebling.de>
Wed, 17 Sep 2008 18:08:46 +0000 (18:08 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@55690 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/list.h

index ed990569a691812219696ced2aa881a53ddcddee..38ba08708e505977131023d6e859e91f882e6f47 100644 (file)
@@ -234,7 +234,7 @@ public:
     /**
         Returns the last item of the list.
     */
-    reference back() const;
+    reference back();
 
     /**
         Returns the last item of the list as a const reference.
@@ -244,7 +244,7 @@ public:
     /**
         Returns an iterator pointing to the beginning of the list.
     */
-    iterator begin() const;
+    iterator begin();
 
     /**
         Returns a const iterator pointing to the beginning of the list.
@@ -326,18 +326,18 @@ public:
     /**
         Adds an item to end of the list.
     */
-    void push_back();
+    void push_back(const_reference v = value_type());
 
     /**
         Adds an item to the front of the list.
     */
-    void push_front();
+    void push_front(const_reference v = value_type());
 
     /**
         Returns a reverse iterator pointing to the beginning of the
         reversed list.
     */
-    reverse_iterator rbegin() const;
+    reverse_iterator rbegin();
 
     /**
         Returns a const reverse iterator pointing to the beginning of the
@@ -354,7 +354,7 @@ public:
         Returns a reverse iterator pointing to the end of the
         reversed list.
     */
-    reverse_iterator rend() const;
+    reverse_iterator rend();
 
     /**
         Returns a const reverse iterator pointing to the end of the