diff options
-rw-r--r-- | calendar/ChangeLog | 8 | ||||
-rw-r--r-- | calendar/gui/dialogs/recurrence-page.c | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index c7ad6f5040..7f18df0647 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,3 +1,11 @@ +2006-01-25 Chenthill Palanisamy <pchenthill@novell.com> + + Fixes #327879 + + * gui/dialogs/recurrence-page.c: (clear_widgets): + Use make_ending_special to fill the ending fields + properly. + 2006-01-24 Chenthill Palanisamy <pchenthill@novell.com> Fixes #323700 diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c index ec44ce269a..c3f393b86c 100644 --- a/calendar/gui/dialogs/recurrence-page.c +++ b/calendar/gui/dialogs/recurrence-page.c @@ -209,6 +209,7 @@ static void recurrence_page_set_dates (CompEditorPage *page, CompEditorPageDates static void field_changed (RecurrencePage *apage); static void make_ending_count_special (RecurrencePage *rpage); +static void make_ending_special (RecurrencePage *rpage); G_DEFINE_TYPE (RecurrencePage, recurrence_page, TYPE_COMP_EDITOR_PAGE); @@ -381,7 +382,7 @@ clear_widgets (RecurrencePage *rpage) ENDING_FOR, ending_types_map); g_signal_handlers_unblock_matched (menu, G_SIGNAL_MATCH_DATA, 0, 0, NULL, NULL, rpage); - make_ending_count_special (rpage); + make_ending_special (rpage); /* Exceptions list */ e_date_time_list_clear (priv->exception_list_store); } |