Mercurial > pidgin
changeset 16154:fce68761da8c
Sort smiley themes case-insensitively because I think that's what
normal humans expect. I don't know, what do you guys think?
Polling developers about this is not a good sample set.
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Sun, 15 Apr 2007 18:52:28 +0000 |
parents | 6613fb7af427 |
children | fb6a333f517a |
files | pidgin/gtkprefs.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/pidgin/gtkprefs.c Sun Apr 15 18:51:11 2007 +0000 +++ b/pidgin/gtkprefs.c Sun Apr 15 18:52:28 2007 +0000 @@ -610,7 +610,7 @@ ret = 1; } else { /* Neither string is "none", default to normal sort */ - ret = g_utf8_collate(name1,name2); + ret = purple_utf8_strcasecmp(name1,name2); } g_free(name1);