From 39db6c42bfa40b3566dacf1ad3fc3565558b9db9 Mon Sep 17 00:00:00 2001 From: Lauri Nurmi Date: Tue, 20 Oct 2015 20:44:06 +0300 Subject: [PATCH] Clarify the description of wxStringTokenizer::GetString() Closes https://github.com/wxWidgets/wxWidgets/pull/119 --- interface/wx/tokenzr.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/interface/wx/tokenzr.h b/interface/wx/tokenzr.h index 0f912af74f..d7861593b0 100644 --- a/interface/wx/tokenzr.h +++ b/interface/wx/tokenzr.h @@ -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;