diff options
author | Milan Crha <mcrha@redhat.com> | 2009-10-07 16:03:03 +0800 |
---|---|---|
committer | Milan Crha <mcrha@redhat.com> | 2009-10-07 16:03:03 +0800 |
commit | add2920ff519ff3ef898f10d357bd59b3e7531a4 (patch) | |
tree | be8e53c742d7dce5dc05918ff60eb7a421575246 /calendar/gui/e-calendar-table.c | |
parent | 36e80a2c16fcd2586c0ec1d482897825ee8fbed5 (diff) | |
download | gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.gz gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.tar.zst gsoc2013-evolution-add2920ff519ff3ef898f10d357bd59b3e7531a4.zip |
Bug #597564 - Invalid g_object_unref call in redo_queries
Diffstat (limited to 'calendar/gui/e-calendar-table.c')
-rw-r--r-- | calendar/gui/e-calendar-table.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-calendar-table.c b/calendar/gui/e-calendar-table.c index 59abdd5d77..483c032438 100644 --- a/calendar/gui/e-calendar-table.c +++ b/calendar/gui/e-calendar-table.c @@ -1570,7 +1570,7 @@ show_completed_rows (ECalModel *model, GList *clients_list, gchar *show_sexp, GP if (!(e_cal_model_get_component_for_uid (model, id))) { e_table_model_pre_change (E_TABLE_MODEL (model)); - comp_data = g_new0 (ECalModelComponent, 1); + comp_data = g_object_new (E_TYPE_CAL_MODEL_COMPONENT, NULL); comp_data->client = g_object_ref (client); comp_data->icalcomp = icalcomponent_new_clone (m->data); e_cal_model_set_instance_times (comp_data, |