From bb8e159505a60cd7d36d70019b452e0e7fa19b39 Mon Sep 17 00:00:00 2001 From: helge Date: Sun, 15 Aug 2004 18:25:53 +0000 Subject: [PATCH] git-svn-id: http://svn.opengroupware.org/SOGo/trunk@232 d1b88da0-ebda-0310-925b-ed51d893ca5b --- SOGoLogic/ChangeLog | 6 +++--- SOGoLogic/SOGoAppointment.h | 3 +++ SOGoLogic/SOGoAppointment.m | 7 +++++++ SOGoLogic/Version | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/SOGoLogic/ChangeLog b/SOGoLogic/ChangeLog index 5d652de0..04a21b45 100644 --- a/SOGoLogic/ChangeLog +++ b/SOGoLogic/ChangeLog @@ -1,8 +1,8 @@ -2004-08-15 +2004-08-15 Helge Hess - * SOGoAppointmentICalRenderer.m: minor fixes to generated iCal (v0.9.8) + * SOGoAppointment.m: added comment accessors (v0.9.9) -2004-08-15 Helge Hess + * SOGoAppointmentICalRenderer.m: minor fixes to generated iCal (v0.9.8) * SOGoAppointment.h: added -setAttendees: method (v0.9.7) diff --git a/SOGoLogic/SOGoAppointment.h b/SOGoLogic/SOGoAppointment.h index b1c3074c..827b5f87 100644 --- a/SOGoLogic/SOGoAppointment.h +++ b/SOGoLogic/SOGoAppointment.h @@ -55,6 +55,9 @@ - (NSString *)location; - (BOOL)hasLocation; +- (void)setComment:(NSString *)_value; +- (NSString *)comment; + - (void)setStatus:(NSString *)_value; - (NSString *)status; diff --git a/SOGoLogic/SOGoAppointment.m b/SOGoLogic/SOGoAppointment.m index 6aaf24d2..2a1b93d0 100644 --- a/SOGoLogic/SOGoAppointment.m +++ b/SOGoLogic/SOGoAppointment.m @@ -154,6 +154,13 @@ static SaxObjectDecoder *sax = nil; return [[self location] length] > 0 ? YES : NO; } +- (void)setComment:(NSString *)_value { + [self->event setComment:_value]; +} +- (NSString *)comment { + return [self->event comment]; +} + - (void)setStatus:(NSString *)_value { [self->event setStatus:_value]; } diff --git a/SOGoLogic/Version b/SOGoLogic/Version index 28292b54..81be7eb6 100644 --- a/SOGoLogic/Version +++ b/SOGoLogic/Version @@ -1,3 +1,3 @@ # $Id$ -SUBMINOR_VERSION:=8 +SUBMINOR_VERSION:=9 -- 2.39.5