diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-25 12:18:53 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-25 12:18:53 +0800 |
commit | 9ec286c40e67e091738e3370e2cce45501bc16cd (patch) | |
tree | 93a1b6ee8952592f6a6573b67fa0a24669417522 /calendar | |
parent | bf44ea0b3f438ad69bfec3aa94f22b36c8f759ba (diff) | |
download | gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.gz gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.zst gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.zip |
fixes #327879
svn path=/trunk/; revision=31300
Diffstat (limited to 'calendar')
-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); } |