diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-09 05:16:54 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-12-09 05:16:54 +0800 |
commit | 75f8d193c4e79bda653b2d0d96856117f1d5d3d3 (patch) | |
tree | 227ab4615244cd738262c5139c86bfcb33118d57 /calendar/gui/e-calendar-view.c | |
parent | dffbebe88bc54a5ffc4ea414a835c4a14672d87e (diff) | |
download | gsoc2013-evolution-75f8d193c4e79bda653b2d0d96856117f1d5d3d3.tar.gz gsoc2013-evolution-75f8d193c4e79bda653b2d0d96856117f1d5d3d3.tar.zst gsoc2013-evolution-75f8d193c4e79bda653b2d0d96856117f1d5d3d3.zip |
fixes the tool tip crash.
svn path=/trunk/; revision=30738
Diffstat (limited to 'calendar/gui/e-calendar-view.c')
-rw-r--r-- | calendar/gui/e-calendar-view.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index e137fd079c..0fae38bdf9 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -1903,7 +1903,7 @@ get_label (struct icaltimetype *tt) gboolean -e_calendar_view_get_tooltips (ECalendarViewEvent *pevent) +e_calendar_view_get_tooltips (ECalendarViewEventData *data) { GtkWidget *label, *box, *hbox, *ebox, *frame; const char *str; @@ -1912,7 +1912,11 @@ e_calendar_view_get_tooltips (ECalendarViewEvent *pevent) ECalComponentDateTime dtstart, dtend; icalcomponent *clone_comp; time_t t_start, t_end; + ECalendarViewEvent *pevent; + pevent = data->get_view_event (data->cal_view, data->day, data->event_num); + g_free (data); + ECalComponent *newcomp = e_cal_component_new (); icaltimezone *zone; GdkColor color, outer_color; |