diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-05-11 20:12:07 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-05-11 20:12:07 +0800 |
commit | 04ede99ba44713973ef30ea8e5b20aee04203861 (patch) | |
tree | 66fb03b529a36042f8aeb08f8894fa506b39b0cb | |
parent | dd5cc403f64f2bd25ed35ed14455496b8863f3c8 (diff) | |
download | gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.tar gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.tar.gz gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.tar.bz2 gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.tar.lz gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.tar.xz gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.tar.zst gsoc2013-evolution-04ede99ba44713973ef30ea8e5b20aee04203861.zip |
Fixes a crash
svn path=/trunk/; revision=31974
-rw-r--r-- | calendar/gui/e-calendar-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-calendar-view.c b/calendar/gui/e-calendar-view.c index 2327914576..ac2eb66556 100644 --- a/calendar/gui/e-calendar-view.c +++ b/calendar/gui/e-calendar-view.c @@ -2136,9 +2136,9 @@ e_calendar_view_get_tooltips (ECalendarViewEventData *data) if (widget) gtk_widget_destroy (widget); - client = pevent->comp_data->client; default_zone = e_calendar_view_get_timezone (data->cal_view); pevent = data->get_view_event (data->cal_view, data->day, data->event_num); + client = pevent->comp_data->client; clone_comp = icalcomponent_new_clone (pevent->comp_data->icalcomp); if (!e_cal_component_set_icalcomponent (newcomp, clone_comp)) |