diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-01-17 02:24:31 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-01-17 07:52:52 +0800 |
commit | 992c8b7d58025cf4d04ed3665210f191c8048339 (patch) | |
tree | ed04bd47c142c1a35820b03c6df8e8455d86f15c /widgets/table/e-table-sort-info.c | |
parent | 2c476af581cc64bb3de8edc726149a7d8e9677b8 (diff) | |
download | gsoc2013-evolution-992c8b7d58025cf4d04ed3665210f191c8048339.tar.gz gsoc2013-evolution-992c8b7d58025cf4d04ed3665210f191c8048339.tar.zst gsoc2013-evolution-992c8b7d58025cf4d04ed3665210f191c8048339.zip |
libetable cleanups.
Diffstat (limited to 'widgets/table/e-table-sort-info.c')
-rw-r--r-- | widgets/table/e-table-sort-info.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widgets/table/e-table-sort-info.c b/widgets/table/e-table-sort-info.c index f7a6d89ad5..b238e6b444 100644 --- a/widgets/table/e-table-sort-info.c +++ b/widgets/table/e-table-sort-info.c @@ -71,11 +71,11 @@ e_table_sort_info_init (ETableSortInfo *info) } static void -e_table_sort_info_class_init (ETableSortInfoClass *klass) +e_table_sort_info_class_init (ETableSortInfoClass *class) { - GObjectClass * object_class = G_OBJECT_CLASS (klass); + GObjectClass * object_class = G_OBJECT_CLASS (class); - e_table_sort_info_parent_class = g_type_class_peek_parent (klass); + e_table_sort_info_parent_class = g_type_class_peek_parent (class); object_class->finalize = etsi_finalize; @@ -97,8 +97,8 @@ e_table_sort_info_class_init (ETableSortInfoClass *klass) g_cclosure_marshal_VOID__VOID, G_TYPE_NONE, 0); - klass->sort_info_changed = NULL; - klass->group_info_changed = NULL; + class->sort_info_changed = NULL; + class->group_info_changed = NULL; } static void @@ -340,7 +340,7 @@ e_table_sort_info_sorting_set_nth (ETableSortInfo *info, gint n, ETableSortCol ETableSortInfo * e_table_sort_info_new (void) { - return g_object_new (E_TABLE_SORT_INFO_TYPE, NULL); + return g_object_new (E_TYPE_TABLE_SORT_INFO, NULL); } /** |