From 1d8a9f24439696b1f6a5a6aa7dfd6eb1c4ea24f8 Mon Sep 17 00:00:00 2001 From: Jeffrey Stedfast Date: Thu, 5 Dec 2002 18:31:30 +0000 Subject: Add a "collate" sort callback that uses the new g_collate_compare(). 2002-12-05 Jeffrey Stedfast * e-table-extras.c (ete_init): Add a "collate" sort callback that uses the new g_collate_compare(). 2002-12-05 Jeffrey Stedfast * gal/util/e-util.c (g_str_compare): Revert back to using just strcmp - this fixes bug #33933 but reopens bug #26355. (g_collate_compare): New function meant to address the sorting required by bug #26335. svn path=/trunk/; revision=19014 --- e-util/e-util.c | 31 ++++++++++++++++++++++--------- e-util/e-util.h | 2 ++ 2 files changed, 24 insertions(+), 9 deletions(-) (limited to 'e-util') diff --git a/e-util/e-util.c b/e-util/e-util.c index c425050c4e..6c50331011 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -45,27 +45,40 @@ #endif int -g_str_compare(const void *x, const void *y) +g_str_compare (const void *x, const void *y) { if (x == NULL || y == NULL) { if (x == y) return 0; else return x ? -1 : 1; - } + } + + return strcmp (x, y); +} +int +g_collate_compare (const void *x, const void *y) +{ + if (x == NULL || y == NULL) { + if (x == y) + return 0; + else + return x ? -1 : 1; + } + return g_utf8_collate (x, y); } int -g_int_compare(const void *x, const void *y) +g_int_compare (const void *x, const void *y) { - if ( GPOINTER_TO_INT(x) < GPOINTER_TO_INT(y) ) - return -1; - else if ( GPOINTER_TO_INT(x) == GPOINTER_TO_INT(y) ) - return 0; - else - return 1; + if (GPOINTER_TO_INT (x) < GPOINTER_TO_INT (y)) + return -1; + else if (GPOINTER_TO_INT (x) == GPOINTER_TO_INT (y)) + return 0; + else + return 1; } char * diff --git a/e-util/e-util.h b/e-util/e-util.h index 1d5850ccf2..2937265f6b 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -139,6 +139,8 @@ typedef enum { } EFocus; int g_str_compare (const void *x, const void *y); +int g_collate_compare (const void *x, + const void *y); int g_int_compare (const void *x, const void *y); char *e_strdup_strip (const char *string); -- cgit v1.2.3