]> err.no Git - sope/commitdiff
fixed a bug in isNotEmpty
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 20 Jul 2005 11:50:27 +0000 (11:50 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Wed, 20 Jul 2005 11:50:27 +0000 (11:50 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@926 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

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

index c6023c56455abba0fd86ee1829b2eebac70ae0f9..1837666714bfce494d41bddea7e76656e8c12a2e 100644 (file)
@@ -1,5 +1,8 @@
 2005-07-20  Helge Hess  <helge.hess@opengroupware.org>
 
+       * FdExt.subproj/NSNull+misc.m: fixed a stupid bug in -isNotEmpty
+         (v4.5.165)
+
        * FdExt.subproj/NSNull+misc.m: added -isNotEmpty for NSArray and
          NSDictionary (return YES in case they have no elements) (v4.5.164)
 
index a8ebf83df5db2310df812001046dc09c005adcc1..550a3decc8f6fa2bcd84dec795cccbe7a6e8c208 100644 (file)
@@ -250,7 +250,7 @@ static inline BOOL doAbort(void) {
 @implementation NSArray(NSNullMisc)
 
 - (BOOL)isNotEmpty {
-  return [self count] == 0 ? YES : NO;
+  return [self count] == 0 ? NO : YES;
 }
 
 @end /* NSArray(NSNullMisc) */
@@ -258,7 +258,7 @@ static inline BOOL doAbort(void) {
 @implementation NSDictionary(NSNullMisc)
 
 - (BOOL)isNotEmpty {
-  return [self count] == 0 ? YES : NO;
+  return [self count] == 0 ? NO : YES;
 }
 
 @end /* NSDictionary(NSNullMisc) */
index 32992f7db24ff6d525bf34c7895bedda4625bc2c..b6a3393f339a9fefb8bf88a9bd14ae7065ee0792 100644 (file)
@@ -1,6 +1,6 @@
 # version
 
-SUBMINOR_VERSION:=164
+SUBMINOR_VERSION:=165
 
 # v4.3.115 requires libFoundation v1.0.59
 # v4.2.72  requires libEOControl  v4.2.39