Replace isdigit() with wxIsdigit() when testing wxString characters.

This is a continuation of commit 8a03025a.  All known instances of
using isdigit() to test a character in a wxString have been replaced
by wxIsdigit().
This commit is contained in:
Wayne Stambaugh
2019-03-14 09:47:14 -04:00
parent ec24981cc8
commit aef0221d3b
5 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -566,7 +566,7 @@ int SplitString( wxString strToSplit,
for( ii = (strToSplit.length() - 1); ii >= 0; ii-- )
{
if( isdigit( strToSplit[ii] ) )
if( wxIsdigit( strToSplit[ii] ) )
break;
}
@@ -585,7 +585,7 @@ int SplitString( wxString strToSplit,
for( ; ii >= 0; ii-- )
{
if( !isdigit( strToSplit[ii] ) && separators.Find( strToSplit[ii] ) < 0 )
if( !wxIsdigit( strToSplit[ii] ) && separators.Find( strToSplit[ii] ) < 0 )
break;
}