changed (no longer valid) wxToUpper and wxToLower to toupper/tolower
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
26ac40202f
commit
a4146f166f
@ -1637,10 +1637,10 @@ char *ConvertCase(char *s)
|
||||
int i;
|
||||
if (upperCaseNames)
|
||||
for (i = 0; i < len; i ++)
|
||||
buf[i] = wxToUpper(s[i]);
|
||||
buf[i] = toupper(s[i]);
|
||||
else
|
||||
for (i = 0; i < len; i ++)
|
||||
buf[i] = wxToLower(s[i]);
|
||||
buf[i] = tolower(s[i]);
|
||||
buf[i] = 0;
|
||||
return buf;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user