app: use gimp_object_name_collate() when sorting device names

This commit is contained in:
Michael Natterer
2010-12-09 21:45:04 +01:00
parent d91a1d5b6c
commit 8bc0e569ec

View File

@ -846,7 +846,7 @@ gimp_device_info_compare (GimpDeviceInfo *a,
}
else
{
return - strcmp (gimp_object_get_name (a),
gimp_object_get_name (b));
return gimp_object_name_collate ((GimpObject *) a,
(GimpObject *) b);
}
}