+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)
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;
}
*/
#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)