mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-21 21:09:28 +00:00
Monotone-Parent: 073db33d7e59d47a6e90ddb5e637b426e901a649
Monotone-Revision: e49002b89db3022e5f7f6b741a46f8cc67f4d398 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-11-15T00:53:59 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -61,6 +61,8 @@
|
||||
[allAppointments release];
|
||||
if (daysToDisplay)
|
||||
[daysToDisplay release];
|
||||
if (hoursToDisplay)
|
||||
[hoursToDisplay release];
|
||||
[dateFormatter release];
|
||||
[super dealloc];
|
||||
}
|
||||
@@ -137,8 +139,7 @@
|
||||
{
|
||||
currentHour = [self dayStartHour];
|
||||
lastHour = [self dayEndHour];
|
||||
hoursToDisplay
|
||||
= [NSMutableArray arrayWithCapacity: (lastHour - currentHour)];
|
||||
hoursToDisplay = [NSMutableArray new];
|
||||
|
||||
while (currentHour < lastHour)
|
||||
{
|
||||
@@ -315,4 +316,9 @@
|
||||
return classes;
|
||||
}
|
||||
|
||||
- (NSString *) clickableHourCellClass
|
||||
{
|
||||
return [NSString stringWithFormat: @"clickableHourCell clickableHourCell%@", currentTableHour];
|
||||
}
|
||||
|
||||
@end
|
||||
|
||||
Reference in New Issue
Block a user