diff options
author | Rodrigo Moya <rodrigo@novell.com> | 2005-01-03 21:39:26 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2005-01-03 21:39:26 +0800 |
commit | e1df9b7e3aa46861efdce6eb251966fedf15e7cc (patch) | |
tree | 9266fc1f6190adab806bb662f5055cc4ab52e9c2 /calendar/gui/e-cal-model.c | |
parent | 8cfe52bd9e50155e045442a4ae80bd2e1fe060f0 (diff) | |
download | gsoc2013-evolution-e1df9b7e3aa46861efdce6eb251966fedf15e7cc.tar.gz gsoc2013-evolution-e1df9b7e3aa46861efdce6eb251966fedf15e7cc.tar.zst gsoc2013-evolution-e1df9b7e3aa46861efdce6eb251966fedf15e7cc.zip |
redo the queries after emitting the 'time_range_changed' signal, since now
2005-01-03 Rodrigo Moya <rodrigo@novell.com>
* gui/e-cal-model.c (e_cal_model_set_time_range): redo the queries
after emitting the 'time_range_changed' signal, since now the
views will only update their internal data but not redraw the
events on that signal.
* gui/e-day-view.c (model_changed_cb): removed, no longer needed.
(e_day_view_recalc_day_starts): no need to call e_day_view_update_query.
(e_day_view_init): no need to connect to 'model_changed' signal
on the model, we already connect to the row/cell_changed ones.
* gui/e-week-view.c (time_range_changed_cb): no need to call
e_week_view_update_query.
(model_changed_cb): removed, no longer needed.
(e_week_view_init): no need to connect to 'model_changed' signal
on the model, we already connect to the row/cell_changed ones.
svn path=/trunk/; revision=28214
Diffstat (limited to 'calendar/gui/e-cal-model.c')
-rw-r--r-- | calendar/gui/e-cal-model.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 9d1cf2d0ab..3dd68d2111 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -1741,8 +1741,8 @@ e_cal_model_set_time_range (ECalModel *model, time_t start, time_t end) priv->start = start; priv->end = end; - redo_queries (model); g_signal_emit (G_OBJECT (model), signals[TIME_RANGE_CHANGED], 0, start, end); + redo_queries (model); } const char * |