add const qualifiers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52414 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-03-09 16:24:26 +00:00
parent 1fee6e2577
commit 328f5751e8
193 changed files with 2525 additions and 2513 deletions

View File

@@ -45,7 +45,7 @@ public:
Returns item at position @e idx.
*/
const value_type at(size_type idx);
value_type at(size_type idx);
const value_type at(size_type idx);
//@}
//@{
@@ -53,7 +53,7 @@ public:
Return last item.
*/
const value_type back();
value_type back();
const value_type back();
//@}
//@{
@@ -61,13 +61,13 @@ public:
Return iterator to beginning of the vector.
*/
const_iterator begin();
iterator begin();
const iterator begin();
//@}
/**
*/
size_type capacity();
size_type capacity() const;
/**
Clears the vector.
@@ -77,14 +77,14 @@ public:
/**
Returns @true if the vector is empty.
*/
bool empty();
bool empty() const;
//@{
/**
Returns iterator to the end of the vector.
*/
const_iterator end();
iterator end();
const iterator end();
//@}
//@{
@@ -102,7 +102,7 @@ public:
Returns first item.
*/
const value_type front();
value_type front();
const value_type front();
//@}
/**
@@ -123,7 +123,7 @@ public:
Returns item at position @e idx.
*/
const value_type operator[](size_type idx);
value_type operator[](size_type idx);
const value_type operator[](size_type idx);
//@}
/**