+2006-02-20 Helge Hess <helge.hess@opengroupware.org>
+
+ * EOKeyValueCoding.m: do not use EOKeyValueCoding with gstep-base (KVC
+ implemented directly in base) (v4.5.63)
+
2005-11-17 Helge Hess <helge.hess@opengroupware.org>
* v4.5.62
static EONull *null = nil;
-#if !NeXT_Foundation_LIBRARY
+#if LIB_FOUNDATION_LIBRARY
static id idMethodGetFunc(void* info1, void* info2, id self);
static id idIvarGetFunc(void* info1, void* info2, id self);
- (id)valueForKey:(NSString *)key {
id val;
- if ((val = getValue(key, self)))
+ if ((val = getValue(key, self)) != nil)
return val;
return nil;
# version file
-SUBMINOR_VERSION:=62
+SUBMINOR_VERSION:=63
+2006-02-20 Helge Hess <helge.hess@opengroupware.org>
+
+ * NGBundleManager.m: minor code cleanups (v4.5.182)
+
2006-01-22 Helge Hess <helge.hess@opengroupware.org>
* FdExt.subproj/NGPropertyListParser.m (_skipComments): fixed a bug
Class c;
NSString *cname;
- if ((c = [super principalClass]))
+ if ((c = [super principalClass]) != Nil)
return c;
if ((cname = [[self infoDictionary] objectForKey:@"NSPrincipalClass"]) ==nil)
return Nil;
- if ((c = NSClassFromString(cname)))
+ if ((c = NSClassFromString(cname)) != Nil)
return c;
- NSLog(@"%s: did not find principal class named '%@' of bundle %@",
- __PRETTY_FUNCTION__, cname, self);
+ NSLog(@"%s: did not find principal class named '%@' of bundle %@, dict: %@",
+ __PRETTY_FUNCTION__, cname, self, [self infoDictionary]);
return Nil;
}
# version
-SUBMINOR_VERSION:=181
+SUBMINOR_VERSION:=182
# v4.3.115 requires libFoundation v1.0.59
# v4.2.72 requires libEOControl v4.2.39