Monotone-Parent: fac57624b130b6ebcb1fe5c327329bb1d90571c8

Monotone-Revision: 90a8d72f1dd06d625072289c8e80770857c17810

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2009-03-03T14:57:04
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2009-03-03 14:57:04 +00:00
parent 00f7b94cbd
commit 290cec8c6f
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,9 @@
2009-03-03 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalDayTable.m ([UIxCalDayTable -dayClasses]):
fixed the way the number of the current day is deduced,
independently from the timezone (d. saving time or not).
2009-03-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* SoObjects/Appointments/SOGoComponentOccurence.m

View File

@ -292,8 +292,7 @@
NSMutableString *classes;
unsigned int currentDayNbr, realDayOfWeek;
currentDayNbr = ([currentTableDay timeIntervalSinceDate: [self startDate]]
/ 86400);
currentDayNbr = [daysToDisplay indexOfObject: currentTableDay];
realDayOfWeek = [currentTableDay dayOfWeek];
classes = [NSMutableString string];