aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-cal-list-view.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-07-02 01:48:58 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-07-02 22:34:11 +0800
commitaeefcadc778590ae8e1a7d0ae704fb5adf809815 (patch)
tree027ceeac66e11b820160af0ae7132c9891270a0d /calendar/gui/e-cal-list-view.c
parent67df30b17e196e0241cac79627b6e7ec79581438 (diff)
downloadgsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.tar
gsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.tar.gz
gsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.tar.bz2
gsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.tar.lz
gsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.tar.xz
gsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.tar.zst
gsoc2013-evolution-aeefcadc778590ae8e1a7d0ae704fb5adf809815.zip
Remove e_table_new_from_spec_file().
Also remove e_table_construct_from_spec_file(). Use e_table_new() or e_table_construct() instead.
Diffstat (limited to 'calendar/gui/e-cal-list-view.c')
-rw-r--r--calendar/gui/e-cal-list-view.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/calendar/gui/e-cal-list-view.c b/calendar/gui/e-cal-list-view.c
index 5150ac9f72..1a0f2ee9f3 100644
--- a/calendar/gui/e-cal-list-view.c
+++ b/calendar/gui/e-cal-list-view.c
@@ -190,6 +190,7 @@ setup_e_table (ECalListView *cal_list_view)
{
ECalModel *model;
ETableExtras *extras;
+ ETableSpecification *specification;
GList *strings;
ECell *cell, *popup_cell;
GnomeCanvas *canvas;
@@ -310,11 +311,15 @@ setup_e_table (ECalListView *cal_list_view)
etspecfile = g_build_filename (
EVOLUTION_ETSPECDIR, "e-cal-list-view.etspec", NULL);
- widget = e_table_new_from_spec_file (
- E_TABLE_MODEL (model), extras, etspecfile);
+ specification = e_table_specification_new ();
+ e_table_specification_load_from_file (specification, etspecfile);
+
+ widget = e_table_new (E_TABLE_MODEL (model), extras, specification);
gtk_container_add (GTK_CONTAINER (container), widget);
cal_list_view->table = E_TABLE (widget);
gtk_widget_show (widget);
+
+ g_object_unref (specification);
g_free (etspecfile);
/* Make sure text is readable on top of our color coding */