]> err.no Git - sope/commitdiff
fixed gcc 4.0 warnings
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sat, 6 Aug 2005 18:23:13 +0000 (18:23 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Sat, 6 Aug 2005 18:23:13 +0000 (18:23 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@985 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-ical/NGiCal/ChangeLog
sope-ical/NGiCal/NGVCardName.m
sope-ical/NGiCal/Version
sope-ical/NGiCal/iCalCalendar.m

index ae79ef02faf9ebc44acfb1b0b38f47c8db713107..51097b28535adeebf9362dccea2a61e378efa948 100644 (file)
@@ -1,3 +1,7 @@
+2005-08-06  Helge Hess  <helge.hess@opengroupware.org>
+
+       * iCalCalendar.m, NGVCardName.m: fixed gcc 4.0 warnings (v4.5.59)
+
 2005-08-05  Helge Hess  <helge.hess@opengroupware.org>
 
        * NGVCardSaxHandler.h: fixed a gcc 4.0 warning (v4.5.58)
index 06be3f96d67257d6409e254dc11e8806eb9765fb..1d7a48f38bc5d43e65aac15b1169670582bea68c 100644 (file)
   types:(NSArray *)_types arguments:(NSDictionary *)_a
 {
   if ((self = [super initWithGroup:_group types:_types arguments:_a]) != nil) {
-    self->family = [[_plist objectForKey:@"family"] copy];
-    self->given  = [[_plist objectForKey:@"given"]  copy];
-    self->other  = [[_plist objectForKey:@"other"]  copy];
-    self->prefix = [[_plist objectForKey:@"prefix"] copy];
-    self->suffix = [[_plist objectForKey:@"suffix"] copy];
+    self->family = [[(NSDictionary *)_plist objectForKey:@"family"] copy];
+    self->given  = [[(NSDictionary *)_plist objectForKey:@"given"]  copy];
+    self->other  = [[(NSDictionary *)_plist objectForKey:@"other"]  copy];
+    self->prefix = [[(NSDictionary *)_plist objectForKey:@"prefix"] copy];
+    self->suffix = [[(NSDictionary *)_plist objectForKey:@"suffix"] copy];
   }
   return self;
 }
index c0150566ab8c34d2036dff0a6d1f56311a39e59e..2b4f99b530346060045615e26e85f6f7dadab7cf 100644 (file)
@@ -2,7 +2,7 @@
 
 MAJOR_VERSION=4
 MINOR_VERSION=5
-SUBMINOR_VERSION:=58
+SUBMINOR_VERSION:=59
 
 # v4.5.40 requires NGExtensions v4.5.145
 # v4.5.37 requires NGExtensions v4.5.140
index ad74d685e15f81634af6ece3bb8f756903ccb15e..9305570934e1eb04b2ceae1676d5d8d82d54c22e 100644 (file)
 */
 
 #include "iCalCalendar.h"
-#include <SaxObjC/SaxObjC.h>
+#include "iCalEvent.h"
+#include "iCalToDo.h"
+#include "iCalJournal.h"
+#include "iCalFreeBusy.h"
 #include "iCalEntityObject.h"
+#include <SaxObjC/SaxObjC.h>
 #include "common.h"
 
 @interface iCalCalendar(Privates)