Use g_strcasecmp, not strcmp. Fixes bug #13539.
2001-09-29 Richard Hestilow <hestilow@ximian.com> * gui.c (sort_alpha): Use g_strcasecmp, not strcmp. Fixes bug #13539.
This commit is contained in:
parent
5a4c5e4188
commit
019aa00beb
3 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,8 @@
|
|||
2001-09-29 Richard Hestilow <hestilow@ximian.com>
|
||||
|
||||
* gui.c (sort_alpha): Use g_strcasecmp, not strcmp.
|
||||
Fixes bug #13539.
|
||||
|
||||
2001-09-29 Richard Hestilow <hestilow@ximian.com>
|
||||
|
||||
* lister.c: (list_themes, list_system_themes, list_user_themes):
|
||||
|
|
|
@ -533,7 +533,7 @@ static gint sort_alpha(const void *a, const void *b)
|
|||
A = a;
|
||||
B = b;
|
||||
|
||||
return strcmp(A->name, B->name);
|
||||
return g_strcasecmp(A->name, B->name);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -533,7 +533,7 @@ static gint sort_alpha(const void *a, const void *b)
|
|||
A = a;
|
||||
B = b;
|
||||
|
||||
return strcmp(A->name, B->name);
|
||||
return g_strcasecmp(A->name, B->name);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue