diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-03-09 00:19:23 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-03-09 00:40:41 +0800 |
commit | 642fdc844a783a5248263fd5c6b3e6d982bd261e (patch) | |
tree | f7eae357ba6435d4782135492b79eb93167c132b /calendar | |
parent | 7f9dcce8ec0bf8bb6ee20276628cf6250ed7dea1 (diff) | |
download | gsoc2013-evolution-642fdc844a783a5248263fd5c6b3e6d982bd261e.tar.gz gsoc2013-evolution-642fdc844a783a5248263fd5c6b3e6d982bd261e.tar.zst gsoc2013-evolution-642fdc844a783a5248263fd5c6b3e6d982bd261e.zip |
EMeetingTimeSelector: No need to configure EDateEdit widgets.
EDateEdit widgets are automatically configured by ESettingsDateEdit.
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/gui/e-meeting-time-sel.c | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/calendar/gui/e-meeting-time-sel.c b/calendar/gui/e-meeting-time-sel.c index fa68b4aaec..824ab992c5 100644 --- a/calendar/gui/e-meeting-time-sel.c +++ b/calendar/gui/e-meeting-time-sel.c @@ -808,21 +808,6 @@ e_meeting_time_selector_construct (EMeetingTimeSelector *mts, } e_date_edit_set_show_time (E_DATE_EDIT (mts->start_date_edit), TRUE); - g_object_bind_property ( - mts, "show-week-numbers", - mts->start_date_edit, "show-week-numbers", - G_BINDING_SYNC_CREATE); - - g_object_bind_property ( - mts, "use-24-hour-format", - mts->start_date_edit, "use-24-hour-format", - G_BINDING_SYNC_CREATE); - - g_object_bind_property ( - mts, "week-start-day", - mts->start_date_edit, "week-start-day", - G_BINDING_SYNC_CREATE); - gtk_table_attach ( GTK_TABLE (table), mts->start_date_edit, 1, 2, 0, 1, GTK_FILL, 0, 0, 0); @@ -852,21 +837,6 @@ e_meeting_time_selector_construct (EMeetingTimeSelector *mts, } e_date_edit_set_show_time (E_DATE_EDIT (mts->end_date_edit), TRUE); - g_object_bind_property ( - mts, "show-week-numbers", - mts->end_date_edit, "show-week-numbers", - G_BINDING_SYNC_CREATE); - - g_object_bind_property ( - mts, "use-24-hour-format", - mts->end_date_edit, "use-24-hour-format", - G_BINDING_SYNC_CREATE); - - g_object_bind_property ( - mts, "week-start-day", - mts->end_date_edit, "week-start-day", - G_BINDING_SYNC_CREATE); - gtk_table_attach ( GTK_TABLE (table), mts->end_date_edit, 1, 2, 1, 2, GTK_FILL, 0, 0, 0); |