diff options
Diffstat (limited to 'my-evolution/e-summary-calendar.c')
-rw-r--r-- | my-evolution/e-summary-calendar.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/my-evolution/e-summary-calendar.c b/my-evolution/e-summary-calendar.c index 43d1a9ac29..5e5b730620 100644 --- a/my-evolution/e-summary-calendar.c +++ b/my-evolution/e-summary-calendar.c @@ -322,3 +322,19 @@ e_summary_calendar_reconfigure (ESummary *summary) { generate_html (summary); } + +void +e_summary_calendar_free (ESummary *summary) +{ + ESummaryCalendar *calendar; + + g_return_if_fail (summary != NULL); + g_return_if_fail (IS_E_SUMMARY (summary)); + + calendar = summary->calendar; + gtk_object_unref (GTK_OBJECT (calendar->client)); + g_free (calendar->html); + + g_free (calendar); + summary->calendar = NULL; +} |