aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-example-2.c
diff options
context:
space:
mode:
authorHarish Krishnaswamy <kharish@novell.com>2005-12-09 19:01:23 +0800
committerHarish Krishnaswamy <kharish@src.gnome.org>2005-12-09 19:01:23 +0800
commitc1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905 (patch)
tree7701c8598749a462744bbfa9dbd2672c08acd39c /widgets/table/e-table-example-2.c
parent75f8d193c4e79bda653b2d0d96856117f1d5d3d3 (diff)
downloadgsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar
gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar.gz
gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar.bz2
gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar.lz
gsoc2013-evolution-c1b0b713ca6f6d18b9c4fef9e2dd2e36a40c9905.tar.xz
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 'widgets/table/e-table-example-2.c')
-rw-r--r--widgets/table/e-table-example-2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/widgets/table/e-table-example-2.c b/widgets/table/e-table-example-2.c
index e00265650f..e428f6e54e 100644
--- a/widgets/table/e-table-example-2.c
+++ b/widgets/table/e-table-example-2.c
@@ -296,7 +296,7 @@ create_table ()
ETableCol *ecol = e_table_col_new (
i, headers [i],
1.0, 20, cell_left_just,
- g_str_compare, TRUE);
+ e_str_compare, TRUE);
/* Add it to the header. */
e_table_header_add_column (e_table_header, ecol, i);
}