More replacements of strcmp -> wxStr..

Minor change in font code.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4422 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1999-11-07 16:08:25 +00:00
parent 8493118f58
commit 81c67e27fd
6 changed files with 37 additions and 30 deletions

View File

@@ -151,7 +151,7 @@ int strcasecmp(const char *str_1, const char *str_2)
myLowerString(temp1);
myLowerString(temp2);
int result = strcmp(temp1,temp2);
int result = wxStrcmp(temp1,temp2);
delete[] temp1;
delete[] temp2;