diff options
Diffstat (limited to 'calendar/gui/e-cal-list-view.c')
-rw-r--r-- | calendar/gui/e-cal-list-view.c | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/calendar/gui/e-cal-list-view.c b/calendar/gui/e-cal-list-view.c index 70770aff53..d2baa3573d 100644 --- a/calendar/gui/e-cal-list-view.c +++ b/calendar/gui/e-cal-list-view.c @@ -34,7 +34,6 @@ #include <glib/gi18n.h> #include <glib/gstdio.h> #include <gdk/gdkkeysyms.h> -#include <e-util/e-binding.h> #include <table/e-table-memory-store.h> #include <table/e-cell-checkbox.h> #include <table/e-cell-toggle.h> @@ -192,21 +191,27 @@ setup_e_table (ECalListView *cal_list_view) "bg_color_column", E_CAL_MODEL_FIELD_COLOR, NULL); - e_mutual_binding_new ( + g_object_bind_property ( model, "timezone", - cell, "timezone"); + cell, "timezone", + G_BINDING_BIDIRECTIONAL | + G_BINDING_SYNC_CREATE); - e_mutual_binding_new ( + g_object_bind_property ( model, "use-24-hour-format", - cell, "use-24-hour-format"); + cell, "use-24-hour-format", + G_BINDING_BIDIRECTIONAL | + G_BINDING_SYNC_CREATE); popup_cell = e_cell_date_edit_new (); e_cell_popup_set_child (E_CELL_POPUP (popup_cell), cell); g_object_unref (cell); - e_mutual_binding_new ( + g_object_bind_property ( model, "use-24-hour-format", - popup_cell, "use-24-hour-format"); + popup_cell, "use-24-hour-format", + G_BINDING_BIDIRECTIONAL | + G_BINDING_SYNC_CREATE); e_table_extras_add_cell (extras, "dateedit", popup_cell); cal_list_view->dates_cell = E_CELL_DATE_EDIT (popup_cell); |