Monotone-Parent: c02dd3d01814ad72a1f92274c590ed4b8a820a0b

Monotone-Revision: 46747edd0dcb4ecc9b939b9c8be25185efe65144

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-12-17T15:28:51
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2007-12-17 15:28:51 +00:00
parent 9d4191756d
commit 76c907fc65
3 changed files with 20 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-12-17 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/NSArray+Scheduler.m ([NSMutableArray
-reverseArray]): new category method.
2007-12-14 Ludovic Marcotte <ludovic@inverse.ca>
* SoObjects/Appointments/SOGoCalendarComponent.m

View File

@ -36,4 +36,10 @@
@end
@interface NSMutableArray (SOGoEventComparison)
- (void) reverseArray;
@end
#endif /* NSARRAY_SCHEDULER_H */

View File

@ -139,3 +139,12 @@
}
@end
@implementation NSMutableArray (SOGoEventComparison)
- (void) reverseArray
{
[self setArray: [self reversedArray]];
}
@end