Fix string handling for Turkish locale

This commit is contained in:
Berke Viktor
2012-06-16 13:01:47 +02:00
parent ee7dcc5f22
commit 35821f3875
22 changed files with 135 additions and 135 deletions

View File

@@ -1260,11 +1260,11 @@ key_action_scroll_page (GtkWidget * wid, GdkEventKey * evt, char *d1,
if (d1)
{
if (!strcasecmp (d1, "up"))
if (!g_ascii_strcasecmp (d1, "up"))
type = PAGE_UP;
else if (!strcasecmp (d1, "+1"))
else if (!g_ascii_strcasecmp (d1, "+1"))
type = LINE_DOWN;
else if (!strcasecmp (d1, "-1"))
else if (!g_ascii_strcasecmp (d1, "-1"))
type = LINE_UP;
}