replace isupper to g_ascii_isupper

This commit is contained in:
Ilia Maslakov 2009-04-06 11:04:02 +00:00
parent 87a891a54c
commit bfa9c961ca
1 changed files with 1 additions and 1 deletions

View File

@ -1685,7 +1685,7 @@ my_type_of (int c)
return 2;
return 0x80000000UL;
}
if (isupper (c))
if (g_ascii_isupper ((gchar) c))
c = 'A';
else if (g_ascii_islower ((gchar) c))
c = 'a';