aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/e-week-view.c
diff options
context:
space:
mode:
authorSeth Alves <alves@src.gnome.org>2000-04-26 01:42:55 +0800
committerSeth Alves <alves@src.gnome.org>2000-04-26 01:42:55 +0800
commit8bedc01ea38621443178dececadeefa639ece958 (patch)
tree624f633dc58440f3d641d0f234aa3be817d291de /calendar/gui/e-week-view.c
parente8bff6c44ec77124c393259f84bdf73737e0e7c7 (diff)
downloadgsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.tar
gsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.tar.gz
gsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.tar.bz2
gsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.tar.lz
gsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.tar.xz
gsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.tar.zst
gsoc2013-evolution-8bedc01ea38621443178dececadeefa639ece958.zip
allow for null ico
* gui/e-day-view.c (e_day_view_update_event): allow for null ico * gui/e-week-view.c (e_week_view_update_event): allow for null ico svn path=/trunk/; revision=2605
Diffstat (limited to 'calendar/gui/e-week-view.c')
-rw-r--r--calendar/gui/e-week-view.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/e-week-view.c b/calendar/gui/e-week-view.c
index 28ca5ed396..51a292041e 100644
--- a/calendar/gui/e-week-view.c
+++ b/calendar/gui/e-week-view.c
@@ -926,7 +926,7 @@ e_week_view_update_event (EWeekView *week_view,
return;
/* If one non-recurring event was added, we can just add it. */
- if (flags == CHANGE_NEW && !ico->recur) {
+ if (flags == CHANGE_NEW && ico && !ico->recur) {
num_days = week_view->display_month
? E_WEEK_VIEW_MAX_WEEKS * 7 : 7;
if (ico->dtstart < week_view->day_starts[num_days]