* Bug fixed in CountTokens()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2881 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1999-06-23 17:13:12 +00:00
parent 4080c40a71
commit 44d6d19123

View File

@@ -66,7 +66,7 @@ int wxStringTokenizer::CountTokens() const
if (pos != -1)
{
count++;
p_string = p_string(0, pos);
p_string = p_string(pos+1, p_string.Length());
}
else
{