X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/7c968cee840eda3b7340cdb4ba822065721cbdf6..71aba8333cc915afff9e740c944f7fa7247abacb:/docs/latex/wx/tokenizr.tex diff --git a/docs/latex/wx/tokenizr.tex b/docs/latex/wx/tokenizr.tex index 0b8490ce1d..209dedcfc5 100644 --- a/docs/latex/wx/tokenizr.tex +++ b/docs/latex/wx/tokenizr.tex @@ -10,13 +10,13 @@ string to tokenize and also the delimiters which separate tokens in the string Then \helpref{GetNextToken}{wxstringtokenizergetnexttoken} may be called repeatedly until it \helpref{HasMoreTokens}{wxstringtokenizerhasmoretokens} -returns FALSE. +returns false. 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(); @@ -89,7 +89,7 @@ Returns the number of tokens in the input string. \constfunc{bool}{HasMoreTokens}{\void} -Returns TRUE if the tokenizer has further tokens, FALSE if none are left. +Returns true if the tokenizer has further tokens, false if none are left. \membersection{wxStringTokenizer::GetNextToken}\label{wxstringtokenizergetnexttoken}