+2007-04-17 Helge Hess <helge.hess@opengroupware.org>
+
+ * EOKeyValueCoding.m: fixed a gcc4 warning (v4.7.73)
+
2007-01-15 Stephane Corthesy <stephane@sente.ch>
* EOQualifierParser.m (_parseValue): fixed a bug in the qualifier
register id o;
o = [objAtIdx(self, @selector(objectAtIndex:), i) valueForKey:_key];
- objects[i] = o ? o : null;
+ objects[i] = o ? o : (id)null;
}
result = [NSArray arrayWithObjects:objects count:cc];
# version file
-SUBMINOR_VERSION:=72
+SUBMINOR_VERSION:=73
+2007-04-17 Helge Hess <helge.hess@opengroupware.org>
+
+ * NGExtensions/NSString+Ext.h: expose a few GNUstep NSString
+ extensions (v4.7.192)
+
2006-11-19 Helge Hess <helge.hess@opengroupware.org>
* v4.5.191
#import <Foundation/NSString.h>
-/* specific to gstep-base, supported in libFoundation */
+/* was specific to gstep-base and later removed, supported in libFoundation */
-#if !LIB_FOUNDATION_LIBRARY && !GNUSTEP_BASE_LIBRARY
+#if !LIB_FOUNDATION_LIBRARY
@interface NSString(GSAdditions)
# version
-SUBMINOR_VERSION:=191
+SUBMINOR_VERSION:=192
# v4.3.115 requires libFoundation v1.0.59
# v4.2.72 requires libEOControl v4.2.39
+2007-04-17 Helge Hess <helge.hess@opengroupware.org>
+
+ * EOSQLExpression.m: fixed a gcc4 warning (v4.7.59)
+
2006-08-15 Helge Hess <helge.hess@opengroupware.org>
* EOCustomValues.m: added special support for lF NSTemporaryString
buf[i] = '\0';
return (didSomething)
- ? [NSString stringWithCString:buf length:i]
- : _pattern;
+ ? (NSString *)[NSString stringWithCString:buf length:i]
+ : (NSString *)_pattern;
}
return _pattern;
}
# version file
-SUBMINOR_VERSION:=58
+SUBMINOR_VERSION:=59