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:
Richard Hestilow 2001-09-29 22:10:58 +00:00 committed by Rachel Hestilow
parent 5a4c5e4188
commit 019aa00beb
3 changed files with 7 additions and 2 deletions

View file

@ -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):

View file

@ -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

View file

@ -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