From 1451bdffda8a87d6053519ab868ff778d7fb0e01 Mon Sep 17 00:00:00 2001 From: Damon Chaplin Date: Tue, 23 Oct 2001 21:36:35 +0000 Subject: make sure we free all the CalComponentDateTime's when we are finished. 2001-10-23 Damon Chaplin * cal-util/cal-component.c (cal_component_event_dates_match): make sure we free all the CalComponentDateTime's when we are finished. * gui/gnome-cal.c (gnome_calendar_notify_dates_shown_changed): just return if no time range is set. svn path=/trunk/; revision=13957 --- calendar/gui/gnome-cal.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'calendar/gui/gnome-cal.c') diff --git a/calendar/gui/gnome-cal.c b/calendar/gui/gnome-cal.c index 1790739853..28556ba522 100644 --- a/calendar/gui/gnome-cal.c +++ b/calendar/gui/gnome-cal.c @@ -2554,7 +2554,10 @@ gnome_calendar_notify_dates_shown_changed (GnomeCalendar *gcal) priv = gcal->priv; - gnome_calendar_get_visible_time_range (gcal, &start_time, &end_time); + /* If no time range is set yet, just return. */ + if (!gnome_calendar_get_visible_time_range (gcal, &start_time, + &end_time)) + return; /* We check if the visible date range has changed, and only emit the signal if it has. (This makes sure we only change the folder title -- cgit