diff options
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/dialogs/recurrence-page.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index a438b53d44..58495a446d 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,11 @@ 2008-02-18 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bnc #178778 + + * gui/dialogs/recurrence-page.c: (preview_recur): + +2008-02-18 Srinivasa Ragavan <sragavan@novell.com> + ** Fix for bnc #160049. Patch from OpenSUSE. * common/authentication.c: (build_pass_key), diff --git a/calendar/gui/dialogs/recurrence-page.c b/calendar/gui/dialogs/recurrence-page.c index 34e748a7d7..c95eb34937 100644 --- a/calendar/gui/dialogs/recurrence-page.c +++ b/calendar/gui/dialogs/recurrence-page.c @@ -857,7 +857,7 @@ preview_recur (RecurrencePage *rpage) /* If our component has not been set yet through ::fill_widgets(), we * cannot preview the recurrence. */ - if (!priv->comp || e_cal_component_is_instance (priv->comp)) + if (!priv || !priv->comp || e_cal_component_is_instance (priv->comp)) return; /* Create a scratch component with the start/end and |