Use reference instead of pointer

This commit is contained in:
Artur Wieczorek
2022-04-10 13:37:55 +02:00
parent 04bad7a720
commit 69f45b31a3
2 changed files with 3 additions and 3 deletions

View File

@@ -669,7 +669,7 @@ public:
wxString GetNextToken();
protected:
const wxString* m_str;
const wxString& m_str;
wxString::const_iterator m_curPos;
wxString m_readyToken;
wxUniChar m_delimiter;