+2005-08-06 Helge Hess <helge.hess@opengroupware.org>
+
+ * OFSResourceManager.m, OFSFolderDataSource.m, OFSPropertyListObject.m:
+ fixed gcc 4.0 warnings (v4.5.18)
+
2005-07-23 Sebastian Reitenbach <reitenbach@rapideye.de>
* GNUmakefile.preamble: added OpenBSD linking flags (v4.5.17)
[self clear];
return nil;
}
- if ((object = [self->folder objectForKey:nextName]) == nil) {
+ if ((object = [(NSDictionary *)self->folder objectForKey:nextName]) == nil) {
[self clear];
return nil;
}
return self;
}
-- (id)PUTAction:(id)_ctx {
+- (id)PUTAction:(WOContext *)_ctx {
return [NSException exceptionWithHTTPStatus:405 /* method not allowed */
reason:@"HTTP PUT not yet allowed on plist objects"];
}
- (id)context {
if (self->context == nil)
- return [[WOApplication application] context];
+ return [(WOApplication *)[WOApplication application] context];
return self->context;
}
# version file
-SUBMINOR_VERSION:=17
+SUBMINOR_VERSION:=18
/* define the root SoObject */
-- (OFSFolder *)rootObjectInContext:(id)_ctx {
+- (id)rootObjectInContext:(id)_ctx {
OFSFactoryContext *ctx;
OFSFolder *root;