const_iterator

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53348 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling 2008-04-25 13:41:20 +00:00
parent d974a4945c
commit 36b952b759

View File

@ -84,7 +84,7 @@ should be replaced (especially in time critical places) with:
@code
wxString s = "hello";
wxString::iterator i;
wxString::const_iterator i;
for (i = s.begin(); i != s.end(); ++i)
{
wxUniChar uni_ch = *i;