aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--e-util/e-util.c31
-rw-r--r--e-util/e-util.h2
-rw-r--r--widgets/table/e-table-extras.c1
3 files changed, 25 insertions, 9 deletions
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);
diff --git a/widgets/table/e-table-extras.c b/widgets/table/e-table-extras.c
index d439da2398..81947a6e94 100644
--- a/widgets/table/e-table-extras.c
+++ b/widgets/table/e-table-extras.c
@@ -164,6 +164,7 @@ ete_init (ETableExtras *extras)
extras->pixbufs = g_hash_table_new(g_str_hash, g_str_equal);
e_table_extras_add_compare(extras, "string", g_str_compare);
+ e_table_extras_add_compare(extras, "collate", g_collate_compare);
e_table_extras_add_compare(extras, "integer", g_int_compare);
e_table_extras_add_compare(extras, "string-integer", e_strint_compare);