From: znek Date: Tue, 5 Oct 2004 19:37:01 +0000 (+0000) Subject: new property X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=48c214d9270bdbadb25ef2cf59f8224f9242640a;p=sope new property git-svn-id: http://svn.opengroupware.org/SOPE/trunk@224 e4a50df8-12e2-0310-a44c-efbce7f8a7e3 --- diff --git a/sope-ical/NGiCal/ChangeLog b/sope-ical/NGiCal/ChangeLog index 6a40036c..4f94c2bc 100644 --- a/sope-ical/NGiCal/ChangeLog +++ b/sope-ical/NGiCal/ChangeLog @@ -1,3 +1,7 @@ +2004-10-05 Marcus Mueller + + * iCalEntityObject.[hm]: added categories property (v4.3.30) + 2004-09-22 Marcus Mueller * NGiCal.xcode: fixed several build parameters diff --git a/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj b/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj index 099f9d53..e493b784 100644 --- a/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj +++ b/sope-ical/NGiCal/NGiCal.xcode/project.pbxproj @@ -203,7 +203,7 @@ ); buildSettings = { DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 4.3.29; + DYLIB_CURRENT_VERSION = 4.3.30; FRAMEWORK_SEARCH_PATHS = "$(LOCAL_LIBRARY_DIR)/Frameworks"; FRAMEWORK_VERSION = A; GCC_PRECOMPILE_PREFIX_HEADER = YES; diff --git a/sope-ical/NGiCal/Version b/sope-ical/NGiCal/Version index 21126fa7..3e7ce206 100644 --- a/sope-ical/NGiCal/Version +++ b/sope-ical/NGiCal/Version @@ -2,4 +2,4 @@ MAJOR_VERSION=4 MINOR_VERSION=3 -SUBMINOR_VERSION:=29 +SUBMINOR_VERSION:=30 diff --git a/sope-ical/NGiCal/iCalEntityObject.h b/sope-ical/NGiCal/iCalEntityObject.h index fa30b25a..c7c85f42 100644 --- a/sope-ical/NGiCal/iCalEntityObject.h +++ b/sope-ical/NGiCal/iCalEntityObject.h @@ -52,6 +52,7 @@ NSNumber *sequence; NSString *location; NSString *status; + NSString *categories; } /* accessors */ @@ -86,6 +87,9 @@ - (void)setPriority:(NSString *)_value; - (NSString *)priority; +- (void)setCategories:(NSString *)_value; +- (NSString *)categories; + - (void)setSequence:(NSNumber *)_value; /* this is an int */ - (NSNumber *)sequence; diff --git a/sope-ical/NGiCal/iCalEntityObject.m b/sope-ical/NGiCal/iCalEntityObject.m index 297b8a1d..905fbc68 100644 --- a/sope-ical/NGiCal/iCalEntityObject.m +++ b/sope-ical/NGiCal/iCalEntityObject.m @@ -43,6 +43,7 @@ [self->alarms release]; [self->organizer release]; [self->attendees release]; + [self->categories release]; [super dealloc]; } @@ -97,6 +98,7 @@ - (NSString *)accessClass { return self->accessClass; } + - (void)setPriority:(NSString *)_value { if (self->priority != _value) { [self->priority autorelease]; @@ -107,6 +109,13 @@ return self->priority; } +- (void)setCategories:(NSString *)_value { + ASSIGN(self->categories, _value); +} +- (NSString *)categories { + return self->categories; +} + - (void)setSequence:(NSNumber *)_value { if (![_value isNotNull]) _value = nil; if (self->sequence != _value) {