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/gui | |
parent | bf44ea0b3f438ad69bfec3aa94f22b36c8f759ba (diff) | |
download | gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.gz gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.bz2 gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.lz gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.xz gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.tar.zst gsoc2013-evolution-9ec286c40e67e091738e3370e2cce45501bc16cd.zip |
fixes #327879
svn path=/trunk/; revision=31300
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/recurrence-page.c | 3 |
1 files changed, 2 insertions, 1 deletions
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); } |