diff options
author | Milan Crha <mcrha@redhat.com> | 2011-06-27 17:31:32 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:42:33 +0800 |
commit | f286e88fae02a7da640ab1637130b00d3c366c08 (patch) | |
tree | ff984d9a12656e6c4c2b54177b2cb561ecc13cf1 /calendar/gui/e-week-view.c | |
parent | 46c1bea8ee46a4aa3fdf3759b819342413c2cf69 (diff) | |
download | gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.tar gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.tar.gz gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.tar.bz2 gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.tar.lz gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.tar.xz gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.tar.zst gsoc2013-evolution-f286e88fae02a7da640ab1637130b00d3c366c08.zip |
Bug #653154 - Crash when constructing calendar view
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r-- | calendar/gui/e-week-view.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c index 47f03a9fa2..2385b9f189 100644 --- a/calendar/gui/e-week-view.c +++ b/calendar/gui/e-week-view.c @@ -3244,6 +3244,7 @@ e_week_view_reshape_event_span (EWeekView *week_view, - E_WEEK_VIEW_EVENT_BORDER_WIDTH - E_WEEK_VIEW_EVENT_EDGE_X_PAD - text_x; } else { + text = NULL; /* Get the width of the text of the event. This is a bit of a hack. It would be better if EText could tell us this. */ @@ -3951,6 +3952,7 @@ e_week_view_on_editing_stopped (EWeekView *week_view, if (!uid) return; + text = NULL; g_object_set (span->text_item, "handle_popup", FALSE, NULL); g_object_get (G_OBJECT (span->text_item), "text", &text, NULL); |