# HG changeset patch # User Mark Doliner # Date 1176663148 0 # Node ID fce68761da8c07a16cf7fe4ffd517bb8975c0d3f # Parent 6613fb7af427359cb5cbf145da3deb15ae78d248 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. diff -r 6613fb7af427 -r fce68761da8c pidgin/gtkprefs.c --- 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);