]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/arrstr.h
Fix wrong return value in the changes of r73365.
[wxWidgets.git] / interface / wx / arrstr.h
index 3708c54635b95b0c8df7f005db0f8e21f261ba90..2a00a1b03a98a20cf311626589fbddfbb2304faa 100644 (file)
@@ -160,14 +160,20 @@ public:
 
         @see operator[] for the operator version.
     */
-    wxString& Item(size_t nIndex) const;
+    //@{
+    wxString& Item(size_t nIndex);
+    const wxString& Item(size_t nIndex) const;
+    //@}
 
     /**
         Returns the last element of the array. Attempt to access the last element of
         an empty array will result in assert failure in debug build, however no checks
         are done in release mode.
     */
-    wxString& Last() const;
+    //@{
+    wxString& Last();
+    const wxString& Last() const;
+    //@}
 
     /**
         Removes the first item matching this value. An assert failure is provoked by