]> err.no Git - sope/commitdiff
improved -isNotEmpty
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 20 Jul 2005 11:13:44 +0000 (11:13 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 20 Jul 2005 11:13:44 +0000 (11:13 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@925 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-core/NGExtensions/ChangeLog
sope-core/NGExtensions/FdExt.subproj/NSNull+misc.m
sope-core/NGExtensions/Version

index 2bdef4affce804f842981c331a617becdc6d38b8..c6023c56455abba0fd86ee1829b2eebac70ae0f9 100644 (file)
@@ -1,3 +1,8 @@
+2005-07-20  Helge Hess  <helge.hess@opengroupware.org>
+
+       * FdExt.subproj/NSNull+misc.m: added -isNotEmpty for NSArray and
+         NSDictionary (return YES in case they have no elements) (v4.5.164)
+
 2005-07-19  Helge Hess  <helge.hess@opengroupware.org>
 
        * FdExt.subproj/NSString+misc.m: use -valueForKeyPath: instead of
index 0b7867ba4595e8c4c799390ae7994e10333e51e5..a8ebf83df5db2310df812001046dc09c005adcc1 100644 (file)
@@ -246,3 +246,19 @@ static inline BOOL doAbort(void) {
 }
 
 @end /* NSString(NSNullMisc) */
+
+@implementation NSArray(NSNullMisc)
+
+- (BOOL)isNotEmpty {
+  return [self count] == 0 ? YES : NO;
+}
+
+@end /* NSArray(NSNullMisc) */
+
+@implementation NSDictionary(NSNullMisc)
+
+- (BOOL)isNotEmpty {
+  return [self count] == 0 ? YES : NO;
+}
+
+@end /* NSDictionary(NSNullMisc) */
index 68ffe6c6169efc13ce9c8a94abf8b7f1cba586e8..32992f7db24ff6d525bf34c7895bedda4625bc2c 100644 (file)
@@ -1,6 +1,6 @@
 # version
 
-SUBMINOR_VERSION:=163
+SUBMINOR_VERSION:=164
 
 # v4.3.115 requires libFoundation v1.0.59
 # v4.2.72  requires libEOControl  v4.2.39