Clarify the description of wxStringTokenizer::GetString()

Closes https://github.com/wxWidgets/wxWidgets/pull/119
This commit is contained in:
Lauri Nurmi 2015-10-20 20:44:06 +03:00 committed by Vadim Zeitlin
parent 8437c6a443
commit 39db6c42bf

View File

@ -142,7 +142,10 @@ public:
size_t GetPosition() const;
/**
Returns the part of the starting string without all token already extracted.
Returns the part of the initial string which is yet to be tokenized.
That is, the substring from the current position up to the end,
possibly empty if there are no more tokens left.
*/
wxString GetString() const;