]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/tokenzr.h
document wxFont(wxString) ctor
[wxWidgets.git] / interface / wx / tokenzr.h
index f576de6b5e944abe18069ea4595a0b3bd659b551..a609e1557d88646bf012a2f8018b5170e0cf7f48 100644 (file)
@@ -61,7 +61,6 @@ enum wxStringTokenizerMode
 
 /**
     @class wxStringTokenizer
-    @wxheader{tokenzr.h}
 
     wxStringTokenizer helps you to break a string up into a number of tokens.
     It replaces the standard C function @c strtok() and also extends it in a
@@ -116,7 +115,7 @@ public:
         GetNextToken() is called and when it reaches 0, HasMoreTokens()
         returns @false.
     */
-    int CountTokens() const;
+    size_t CountTokens() const;
 
     /**
         Returns the delimiter which ended scan for the last token returned by
@@ -126,12 +125,12 @@ public:
 
         @since 2.7.0
     */
-    wxChar GetLastDelimiter();
+    wxChar GetLastDelimiter() const;
 
     /**
         Returns the next token or empty string if the end of string was reached.
     */
-    wxString GetNextToken() const;
+    wxString GetNextToken();
 
     /**
         Returns the current position (i.e. one index after the last returned