Monotone-Parent: 7a9373e79859de2841589e14ffae38b4a0472211

Monotone-Revision: 33ff1424b902e24430e86c14dd3abab8c93e0a34

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2012-03-11T23:59:58
maint-2.0.2
Wolfgang Sourdeau 2012-03-11 23:59:58 +00:00
parent 38332aed1a
commit d3c138897b
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2012-03-11 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* iCalEvent.m (-hasDuration): returns NO when the value is present
but empty.
2012-02-03 Francis Lachapelle <flachapelle@inverse.ca>
* iCalDailyRecurrenceCalculator.m

View File

@ -114,7 +114,7 @@
- (BOOL) hasDuration
{
return ([[self childrenWithTag: @"duration"] count] > 0);
return ([[self duration] length] > 0);
}
- (NSTimeInterval) durationAsTimeInterval