X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..d3fa4bc22e84e3ca4d88cc1772f2d414140a1017:/interface/wx/arrstr.h diff --git a/interface/wx/arrstr.h b/interface/wx/arrstr.h index 3708c54635..2a00a1b03a 100644 --- a/interface/wx/arrstr.h +++ b/interface/wx/arrstr.h @@ -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