From 18d64eeed6d7144e051553d89430e33ee83580b9 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Mon, 26 Nov 2007 23:25:35 +0000 Subject: [PATCH] Monotone-Parent: abda0e799811347d36ea72438d0edc77daa4b161 Monotone-Revision: d8549ba070887e4694d144719b284413458362d9 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-11-26T23:25:35 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 5 +++++ UI/Scheduler/UIxAppointmentEditor.m | 2 +- UI/Scheduler/UIxTaskEditor.m | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 58209d70d..d5e0e74d9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2007-11-26 Wolfgang Sourdeau + * UI/Scheduler/UIxTaskEditor.m ([UIxTaskEditor -todo]): same as below. + + * UI/Scheduler/UIxAppointmentEditor.m ([UIxAppointmentEditor + -event]): create the event if it doesn't exist. + * UI/PreferencesUI/UIxPreferences.m ([UIxPreferences -userHasCalendarAccess]) ([UIxPreferences -userHasMailAccess]): same as below, for displaying preference tabs. diff --git a/UI/Scheduler/UIxAppointmentEditor.m b/UI/Scheduler/UIxAppointmentEditor.m index a5147130f..44887adb3 100644 --- a/UI/Scheduler/UIxAppointmentEditor.m +++ b/UI/Scheduler/UIxAppointmentEditor.m @@ -71,7 +71,7 @@ { if (!event) { - event = (iCalEvent *) [[self clientObject] component: NO secure: YES]; + event = (iCalEvent *) [[self clientObject] component: YES secure: YES]; [event retain]; } diff --git a/UI/Scheduler/UIxTaskEditor.m b/UI/Scheduler/UIxTaskEditor.m index 759726dd1..cc0aac6e8 100644 --- a/UI/Scheduler/UIxTaskEditor.m +++ b/UI/Scheduler/UIxTaskEditor.m @@ -73,7 +73,7 @@ { if (!todo) { - todo = (iCalToDo *) [[self clientObject] component: NO secure: YES]; + todo = (iCalToDo *) [[self clientObject] component: YES secure: YES]; [todo retain]; }