diff --git a/UI/MailPartViewers/UIxMailPartICalViewer.m b/UI/MailPartViewers/UIxMailPartICalViewer.m index 7af72391c..0cac3f1bc 100644 --- a/UI/MailPartViewers/UIxMailPartICalViewer.m +++ b/UI/MailPartViewers/UIxMailPartICalViewer.m @@ -212,7 +212,7 @@ } - (iCalEvent *)storedEvent { - return (iCalEvent *) [(SOGoAppointmentObject *)[self storedEventObject] component]; + return (iCalEvent *) [(SOGoAppointmentObject *)[self storedEventObject] component: NO]; } /* organizer tracking */ diff --git a/UI/Scheduler/UIxAppointmentView.m b/UI/Scheduler/UIxAppointmentView.m index 14b3b6ea0..d1aeb4267 100644 --- a/UI/Scheduler/UIxAppointmentView.m +++ b/UI/Scheduler/UIxAppointmentView.m @@ -167,7 +167,7 @@ if (!appointment) { clientObject = [self clientObject]; - appointment = (iCalEvent *) [clientObject component]; + appointment = (iCalEvent *) [clientObject component: NO]; [appointment retain]; } diff --git a/UI/Scheduler/UIxCalInlineAptView.m b/UI/Scheduler/UIxCalInlineAptView.m index 3cbe8dad1..1b67d8322 100644 --- a/UI/Scheduler/UIxCalInlineAptView.m +++ b/UI/Scheduler/UIxCalInlineAptView.m @@ -18,7 +18,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -// $Id: UIxCalInlineAptView.m 1031 2007-03-07 22:52:32Z wolfgang $ +// $Id: UIxCalInlineAptView.m 1032 2007-03-12 23:08:28Z wolfgang $ #import diff --git a/UI/Scheduler/UIxCalView.m b/UI/Scheduler/UIxCalView.m index b14e46a41..2df02fa22 100644 --- a/UI/Scheduler/UIxCalView.m +++ b/UI/Scheduler/UIxCalView.m @@ -1,4 +1,4 @@ -// $Id: UIxCalView.m 1022 2007-02-13 22:12:43Z wolfgang $ +// $Id: UIxCalView.m 1031 2007-03-07 22:52:32Z wolfgang $ #import "common.h" //#import diff --git a/UI/Scheduler/UIxComponent+Agenor.h b/UI/Scheduler/UIxComponent+Agenor.h index fe06a5075..84a837d13 100644 --- a/UI/Scheduler/UIxComponent+Agenor.h +++ b/UI/Scheduler/UIxComponent+Agenor.h @@ -18,7 +18,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -// $Id: UIxComponent+Agenor.h 705 2005-07-08 13:29:26Z znek $ +// $Id: UIxComponent+Agenor.h 1031 2007-03-07 22:52:32Z wolfgang $ #ifndef __UIxComponent_Agenor_H_ diff --git a/UI/Scheduler/UIxTaskView.m b/UI/Scheduler/UIxTaskView.m index 0f31e9241..c2004dd85 100644 --- a/UI/Scheduler/UIxTaskView.m +++ b/UI/Scheduler/UIxTaskView.m @@ -167,7 +167,7 @@ if (!task) { clientObject = [self clientObject]; - task = (iCalToDo *) [clientObject component]; + task = (iCalToDo *) [clientObject component: NO]; [task retain]; } diff --git a/UI/Scheduler/UIxTimeDateControl.m b/UI/Scheduler/UIxTimeDateControl.m index 9c5e315b4..45e181d1b 100644 --- a/UI/Scheduler/UIxTimeDateControl.m +++ b/UI/Scheduler/UIxTimeDateControl.m @@ -70,6 +70,7 @@ } - (void)setDate:(NSCalendarDate *)_date { + NSLog (@"^^^^^^ %@: setDate: %@", self, _date); int minuteValue; if (!_date) _date = [NSCalendarDate date]; @@ -95,8 +96,10 @@ } - (void)setHour:(id)_hour { + NSLog (@"---------------- setHour:"); ASSIGN(hour, _hour); } + - (id)hour { return hour; } @@ -134,6 +137,7 @@ - (void) setDayStartHour: (unsigned int) aStartHour { + NSLog (@"******************** setDayStartHour..."); startHour = aStartHour; } @@ -248,6 +252,7 @@ NSCalendarDate *d; unsigned _year, _month, _day, _hour, _minute, _second; + NSLog (@"******************** %@: take values...", self); /* call super, so that the form values are applied on the popups */ [super takeValuesFromRequest:_rq inContext:_ctx];