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:
Sven Neumann
2003-10-20 11:52:19 +00:00
committed by Sven Neumann
parent b8e10e02e8
commit c87d5bffb1
2 changed files with 7 additions and 1 deletions

View File

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

View File

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