aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2008-01-25 20:38:03 +0800
committerMilan Crha <mcrha@src.gnome.org>2008-01-25 20:38:03 +0800
commit33273820613ab607e93cd8252f06f7ada7d9ed61 (patch)
tree0d78539f8be151d56a5254df630f6e92964e7295 /calendar/gui/e-week-view.c
parent03ee742015a029c1ac57a121752ec0ff06fcb7fb (diff)
downloadgsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.tar
gsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.tar.gz
gsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.tar.bz2
gsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.tar.lz
gsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.tar.xz
gsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.tar.zst
gsoc2013-evolution-33273820613ab607e93cd8252f06f7ada7d9ed61.zip
** Fix for bug #510409
2008-01-25 Milan Crha <mcrha@redhat.com> ** Fix for bug #510409 * gui/e-memos.c: (obtain_list_of_components): * gui/e-tasks.c: (obtain_list_of_components): * gui/e-calendar-table.c: (e_calendar_table_copy_clipboard): * gui/e-memo-table.c: (e_memo_table_copy_clipboard): Do not free memmory owned by libical. * gui/e-week-view.c: (e_week_view_reshape_events): Free memory before assigning NULL. svn path=/trunk/; revision=34893
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r--calendar/gui/e-week-view.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index b6254750a9..f638fb9a91 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -2518,6 +2518,7 @@ e_week_view_reshape_events (EWeekView *week_view)
EWeekViewEventSpan *span;
span = &g_array_index (week_view->spans, EWeekViewEventSpan, event->spans_index + span_num);
e_canvas_item_grab_focus (span->text_item, TRUE);
+ g_free (week_view->last_edited_comp_string);
week_view->last_edited_comp_string = NULL;
}
}