diff options
author | Christopher James Lahey <clahey@ximian.com> | 2001-10-31 18:43:57 +0800 |
---|---|---|
committer | Chris Lahey <clahey@src.gnome.org> | 2001-10-31 18:43:57 +0800 |
commit | dccfbb1fbf368a8edb2ab78fd07b69b767ec1997 (patch) | |
tree | 963f2a7bedef8922e937c950140562b34f7e96ea /calendar/gui/calendar-model.c | |
parent | 2cfc5ae7aee2bd4db5f82a9d972ec552c17cdc07 (diff) | |
download | gsoc2013-evolution-dccfbb1fbf368a8edb2ab78fd07b69b767ec1997.tar.gz gsoc2013-evolution-dccfbb1fbf368a8edb2ab78fd07b69b767ec1997.tar.zst gsoc2013-evolution-dccfbb1fbf368a8edb2ab78fd07b69b767ec1997.zip |
Make the pre_changes and changes match here.
2001-10-31 Christopher James Lahey <clahey@ximian.com>
* gui/calendar-model.c: Make the pre_changes and changes match
here.
svn path=/trunk/; revision=14527
Diffstat (limited to 'calendar/gui/calendar-model.c')
-rw-r--r-- | calendar/gui/calendar-model.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/calendar-model.c b/calendar/gui/calendar-model.c index 629a4f6108..bba7c061e9 100644 --- a/calendar/gui/calendar-model.c +++ b/calendar/gui/calendar-model.c @@ -2382,6 +2382,7 @@ calendar_model_set_use_24_hour_format (CalendarModel *model, g_return_if_fail (IS_CALENDAR_MODEL (model)); if (model->priv->use_24_hour_format != use_24_hour_format) { + e_table_model_pre_change (E_TABLE_MODEL (model)); model->priv->use_24_hour_format = use_24_hour_format; /* Get the views to redraw themselves. */ e_table_model_changed (E_TABLE_MODEL (model)); @@ -2418,6 +2419,7 @@ calendar_model_set_timezone (CalendarModel *model, g_return_if_fail (IS_CALENDAR_MODEL (model)); if (model->priv->zone != zone) { + e_table_model_pre_change (E_TABLE_MODEL (model)); model->priv->zone = zone; /* The timezone affects the times shown for COMPLETED and |