]> err.no Git - sope/commitdiff
fixed -isAfternoon method
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 11 Oct 2004 12:03:11 +0000 (12:03 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Mon, 11 Oct 2004 12:03:11 +0000 (12:03 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@242 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

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

index 2e5e7d23e68e20d9df30bc5b63bcec7630d9e968..57edda27028bc3b4ce6558844a1d468c28e4c9b7 100644 (file)
@@ -1,3 +1,8 @@
+2004-10-11  Matthew Joyce  <mjoyce@aboveit.nl>
+
+       * FdExt.subproj/NSCalendarDate+misc.m: fixed -isAfternoon (all dates
+         were reported as forenoon) (v4.3.122)
+
 2004-10-08  Helge Hess  <helge.hess@opengroupware.org>
 
        * FdExt.subproj/NSString+URLEscaping.m: do not escape URL safe chars
index 752c8ae18e50d29c9cd3ce6558ae5c9cca435898..5327438b3e94c8417e3b0cb9351f832d19f7a49a 100644 (file)
   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $Id$
 
-#import "common.h"
-#import "NSCalendarDate+misc.h"
+#include "NSCalendarDate+misc.h"
+#include "common.h"
 
 #define NUMBER_OF_SECONDS_IN_DAY (24 * 60 * 60)
 
   return [self hourOfDay] >= 12 ? NO : YES;
 }
 - (BOOL)isAfternoon {
-  return [self hourOfDay] >= 12 ? NO : YES;
+  return [self hourOfDay] >= 12 ? YES : NO;
 }
 
 - (NSCalendarDate *)yesterday {
index bebec1470707cc5e0b43f35064feb7d751b587c5..754354e9aebe247d88eb554912929d37f001081e 100644 (file)
@@ -1,6 +1,6 @@
 # version
 
-SUBMINOR_VERSION:=121
+SUBMINOR_VERSION:=122
 
 # v4.3.115 requires libFoundation v1.0.59
 # v4.2.72  requires libEOControl  v4.2.39