diff options
author | C de-Avillez <hggdh2@gmail.com> | 2009-11-03 22:03:39 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-11-03 22:03:39 +0800 |
commit | fbbb865ed40f4342d62225543f25ffe23b3f35e4 (patch) | |
tree | ed813dde65ec5b4713926a278dd458a7c73bf66a /calendar/gui | |
parent | c75bacce45e0cad3ea01d506472d7d1d9ef9611a (diff) | |
download | gsoc2013-evolution-fbbb865ed40f4342d62225543f25ffe23b3f35e4.tar.gz gsoc2013-evolution-fbbb865ed40f4342d62225543f25ffe23b3f35e4.tar.zst gsoc2013-evolution-fbbb865ed40f4342d62225543f25ffe23b3f35e4.zip |
Bug #599627 - Crash when adding a new task in a table
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/e-cal-model.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/calendar/gui/e-cal-model.c b/calendar/gui/e-cal-model.c index 33c209e1c5..b04e7b7245 100644 --- a/calendar/gui/e-cal-model.c +++ b/calendar/gui/e-cal-model.c @@ -1106,15 +1106,11 @@ ecm_append_row (ETableModel *etm, ETableModel *source, gint row) g_warning (G_STRLOC ": Could not create the object!"); /* FIXME: show error dialog */ - icalcomponent_free (comp_data->icalcomp); - g_object_unref (comp_data); - return; + } else { + g_signal_emit (G_OBJECT (model), signals[ROW_APPENDED], 0); } - icalcomponent_free (comp_data->icalcomp); g_object_unref (comp_data); - - g_signal_emit (G_OBJECT (model), signals[ROW_APPENDED], 0); } static gpointer |