]> err.no Git - sope/blobdiff - sope-ical/NGiCal/iCalDataSource.m
fixed gcc 4.0 warnings
[sope] / sope-ical / NGiCal / iCalDataSource.m
index 9257e414662964460dd2b0dd80f6c0b1440f9e44..b84c39402b83ad77ca1e68493311a9c3271a6915 100644 (file)
@@ -1,24 +1,23 @@
 /*
-  Copyright (C) 2000-2003 SKYRIX Software AG
+  Copyright (C) 2000-2005 SKYRIX Software AG
 
-  This file is part of OGo
+  This file is part of SOPE.
 
-  OGo is free software; you can redistribute it and/or modify it under
+  SOPE is free software; you can redistribute it and/or modify it under
   the terms of the GNU Lesser General Public License as published by the
   Free Software Foundation; either version 2, or (at your option) any
   later version.
 
-  OGo is distributed in the hope that it will be useful, but WITHOUT ANY
+  SOPE is distributed in the hope that it will be useful, but WITHOUT ANY
   WARRANTY; without even the implied warranty of MERCHANTABILITY or
   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
   License for more details.
 
   You should have received a copy of the GNU Lesser General Public
-  License along with OGo; see the file COPYING.  If not, write to the
+  License along with SOPE; see the file COPYING.  If not, write to the
   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $Id$
 
 #include "iCalDataSource.h"
 #include "iCalObject.h"
@@ -92,8 +91,8 @@ static SaxObjectDecoder *sax = nil;
 
 - (void)dealloc {
   [self->fetchSpecification release];
-  [self->entityName release];
-  [self->url release];
+  [self->url                release];
+  [self->entityName         release];
   [super dealloc];
 }
 
@@ -164,13 +163,14 @@ static SaxObjectDecoder *sax = nil;
     NSArray  *calendars;
     unsigned i, count;
     
-    if (![[_cal objectForKey:@"tag"] isEqualToString:@"iCalendar"]) {
+    if (![[(NSDictionary *)_cal objectForKey:@"tag"] 
+          isEqualToString:@"iCalendar"]) {
       [self logWithFormat:
              @"ERROR: calendar (entity=%@) passed in as a dictionary: %@", 
              _cal];
     }
     
-    if ((calendars = [_cal objectForKey:@"subcomponents"]) == nil)
+    if ((calendars=[(NSDictionary *)_cal objectForKey:@"subcomponents"])==nil)
       return nil;
 
     count = [calendars count];