Add OpenString to FScanner class

This commit is contained in:
Randy Heit 2015-04-22 17:34:36 -05:00
commit f7bd3acec4
3 changed files with 17 additions and 3 deletions

View file

@ -1061,7 +1061,7 @@ public:
if (tagstring.IsNotEmpty())
{
FScanner sc;
sc.OpenMem("tagstring", tagstring.GetChars(), tagstring.Len());
sc.OpenString("tagstring", tagstring);
// scan the string as long as valid numbers can be found
while (sc.CheckNumber())
{
@ -1536,7 +1536,7 @@ public:
if (tagstring.IsNotEmpty())
{
FScanner sc;
sc.OpenMem("tagstring", tagstring.GetChars(), tagstring.Len());
sc.OpenString("tagstring", tagstring);
// scan the string as long as valid numbers can be found
while (sc.CheckNumber())
{