mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-02-27 04:06:23 +00:00
Monotone-Parent: 53e31f736284762567ba9dd0f85ca935769b14da
Monotone-Revision: eef1670b5893ad8df47967498257fdeeffe9a146 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-03-18T15:22:10 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -212,7 +212,7 @@
|
||||
}
|
||||
|
||||
- (iCalEvent *)storedEvent {
|
||||
return (iCalEvent *) [(SOGoAppointmentObject *)[self storedEventObject] component];
|
||||
return (iCalEvent *) [(SOGoAppointmentObject *)[self storedEventObject] component: NO];
|
||||
}
|
||||
|
||||
/* organizer tracking */
|
||||
|
||||
@@ -167,7 +167,7 @@
|
||||
if (!appointment)
|
||||
{
|
||||
clientObject = [self clientObject];
|
||||
appointment = (iCalEvent *) [clientObject component];
|
||||
appointment = (iCalEvent *) [clientObject component: NO];
|
||||
[appointment retain];
|
||||
}
|
||||
|
||||
|
||||
@@ -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 <math.h>
|
||||
|
||||
|
||||
@@ -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 <OGoContentStore/OCSFolder.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_
|
||||
|
||||
@@ -167,7 +167,7 @@
|
||||
if (!task)
|
||||
{
|
||||
clientObject = [self clientObject];
|
||||
task = (iCalToDo *) [clientObject component];
|
||||
task = (iCalToDo *) [clientObject component: NO];
|
||||
[task retain];
|
||||
}
|
||||
|
||||
|
||||
@@ -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];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user