+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
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 {
# version
-SUBMINOR_VERSION:=121
+SUBMINOR_VERSION:=122
# v4.3.115 requires libFoundation v1.0.59
# v4.2.72 requires libEOControl v4.2.39