made the example Unicode-friendly (patch 785642)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@22791 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2003-08-13 12:16:50 +00:00
parent 9bf58645bf
commit 7e34b934ce

View File

@ -16,7 +16,7 @@ For example:
\begin{verbatim}
wxStringTokenizer tkz("first:second:third:fourth", ":");
wxStringTokenizer tkz(wxT("first:second:third:fourth"), wxT(":"));
while ( tkz.HasMoreTokens() )
{
wxString token = tkz.GetNextToken();