diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-10-17 02:15:43 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-10-17 02:15:43 +0800 |
commit | 9c6bce4c376a2add62ed8ce0b2fef36e171161ff (patch) | |
tree | f3646a6b4b71c555590f0205453bc4fc7767996d /calendar/gui/e-week-view.c | |
parent | 3c39e9cc89192c13787b7838b8054793ab624839 (diff) | |
download | gsoc2013-evolution-9c6bce4c376a2add62ed8ce0b2fef36e171161ff.tar.gz gsoc2013-evolution-9c6bce4c376a2add62ed8ce0b2fef36e171161ff.tar.zst gsoc2013-evolution-9c6bce4c376a2add62ed8ce0b2fef36e171161ff.zip |
Fixes #332101
svn path=/trunk/; revision=32902
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index f8fc86d1ad..50b3e4eb4d 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -2587,7 +2587,7 @@ tooltip_event_cb (GnomeCanvasItem *item, pevent->y = ((GdkEventCrossing *)event)->y_root; pevent->tooltip = NULL; - data->cal_view = view; + data->cal_view = (ECalendarView *)view; data->day = -1; data->event_num = event_num; data->get_view_event = tooltip_get_view_event; @@ -3160,7 +3160,7 @@ e_week_view_on_text_item_event (GnomeCanvasItem *item, pevent->y = ((GdkEventCrossing *)gdkevent)->y_root; pevent->tooltip = NULL; - data->cal_view = week_view; + data->cal_view = (ECalendarView *)week_view; data->day = -1; data->event_num = nevent; data->get_view_event = tooltip_get_view_event; |