]> err.no Git - scalable-opengroupware.org/commitdiff
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@232 d1b88da0-ebda-0310-925b-ed51d...
authorhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sun, 15 Aug 2004 18:25:53 +0000 (18:25 +0000)
committerhelge <helge@d1b88da0-ebda-0310-925b-ed51d893ca5b>
Sun, 15 Aug 2004 18:25:53 +0000 (18:25 +0000)
SOGoLogic/ChangeLog
SOGoLogic/SOGoAppointment.h
SOGoLogic/SOGoAppointment.m
SOGoLogic/Version

index 5d652de079c88e947c1b200fc8497bf85cde34f5..04a21b45f1589ff232e33f83b69d20e6458de7c3 100644 (file)
@@ -1,8 +1,8 @@
-2004-08-15    <helge@agenor.opengroupware.org>
+2004-08-15  Helge Hess  <helge.hess@skyrix.com>
 
-       * SOGoAppointmentICalRenderer.m: minor fixes to generated iCal (v0.9.8)
+       * SOGoAppointment.m: added comment accessors (v0.9.9)
 
-2004-08-15  Helge Hess  <helge.hess@skyrix.com>
+       * SOGoAppointmentICalRenderer.m: minor fixes to generated iCal (v0.9.8)
 
        * SOGoAppointment.h: added -setAttendees: method (v0.9.7)
 
index b1c3074c375dca939402a8c2702023e8e22d0278..827b5f87dd0af4960934398e254ebb14157895ea 100644 (file)
@@ -55,6 +55,9 @@
 - (NSString *)location;
 - (BOOL)hasLocation;
 
+- (void)setComment:(NSString *)_value;
+- (NSString *)comment;
+
 - (void)setStatus:(NSString *)_value;
 - (NSString *)status;
     
index 6aaf24d2380ac2e3c21ccf2f36f30a584562c58c..2a1b93d0ddb0501652a26a75f01f15f327080bff 100644 (file)
@@ -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];
 }
index 28292b549059af8a6800e33ac74ed5ab727067ed..81be7eb6e79defb0b93e0ca78f8a44c310c033c2 100644 (file)
@@ -1,3 +1,3 @@
 # $Id$
 
-SUBMINOR_VERSION:=8
+SUBMINOR_VERSION:=9