diff options
author | Harish Krishnaswamy <kharish@novell.com> | 2005-12-09 19:01:23 +0800 |
---|---|---|
committer | Harish Krishnaswamy <kharish@src.gnome.org> | 2005-12-09 19:01:23 +0800 |
commit | c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905 (patch) | |
tree | 7701c8598749a462744bbfa9dbd2672c08acd39c /e-util/e-util.h | |
parent | 75f8d193c4e79bda653b2d0d96856117f1d5d3d3 (diff) | |
download | gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar.gz gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar.zst gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.zip |
prefix the wrapper functions with e - do not use g lest it is assumed to
2005-12-09 Harish Krishnaswamy <kharish@novell.com>
* e-util.[ch] (e_str_compare), (e_str_case_compare),
(e_collate_compare), (e_int_compare): prefix the wrapper
functions with e - do not use g lest it is assumed to
be a glib function.
* e-table-example-2.c (create_table), e-table-extras.c (ete_init):
* e-table-size-test.c (create_table), test-check.c (check_test):
* test-cols.c (multi_cols_test), test-table.c (table_browser_test):
s/g_*_compare/e_*_compare.
svn path=/trunk/; revision=30739
Diffstat (limited to 'e-util/e-util.h')
-rw-r--r-- | e-util/e-util.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/e-util/e-util.h b/e-util/e-util.h index d665a67052..cc0043c7df 100644 --- a/e-util/e-util.h +++ b/e-util/e-util.h @@ -137,13 +137,13 @@ typedef enum { E_FOCUS_START, E_FOCUS_END } EFocus; -int g_str_compare (const void *x, +int e_str_compare (const void *x, const void *y); -int g_str_case_compare (const void *x, +int e_str_case_compare (const void *x, const void *y); -int g_collate_compare (const void *x, +int e_collate_compare (const void *x, const void *y); -int g_int_compare (const void *x, +int e_int_compare (const void *x, const void *y); char *e_strdup_strip (const char *string); void e_free_object_list (GList *list); |