must use strcmp() not strcoll() on the collation keys obtained from
2003-10-20 Sven Neumann <sven@gimp.org> * app/core/gimpobject.c (gimp_object_name_collate): must use strcmp() not strcoll() on the collation keys obtained from g_utf8_collate_key().
This commit is contained in:
committed by
Sven Neumann
parent
b8e10e02e8
commit
c87d5bffb1
@ -1,3 +1,9 @@
|
||||
2003-10-20 Sven Neumann <sven@gimp.org>
|
||||
|
||||
* app/core/gimpobject.c (gimp_object_name_collate): must use
|
||||
strcmp() not strcoll() on the collation keys obtained from
|
||||
g_utf8_collate_key().
|
||||
|
||||
2003-10-19 Maurits Rijk <lpeek.mrijk@consunet.nl>
|
||||
|
||||
* plug-ins/gfig/Makefile.am
|
||||
|
||||
@ -329,7 +329,7 @@ gimp_object_name_collate (GimpObject *object1,
|
||||
if (! object2->normalized)
|
||||
gimp_object_name_normalize (object2);
|
||||
|
||||
return strcoll (object1->normalized, object2->normalized);
|
||||
return strcmp (object1->normalized, object2->normalized);
|
||||
}
|
||||
|
||||
static void
|
||||
|
||||
Reference in New Issue
Block a user