From 2dcfbb9074c577ac89fd707b9f01d69acca49787 Mon Sep 17 00:00:00 2001 From: Wolfgang Sourdeau Date: Tue, 3 Oct 2006 22:58:00 +0000 Subject: [PATCH] Monotone-Parent: 181cfcbcae699933e92b20839d62aaa10870077f Monotone-Revision: c0151034b0d2d524c781ad3135709a8b9ff7a3c8 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-10-03T22:58:00 Monotone-Branch: ca.inverse.sogo --- ChangeLog | 3 +++ UI/Scheduler/UIxCalView.m | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index b2553e86a..9db659610 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2006-10-03 Wolfgang Sourdeau + * UI/Scheduler/UIxCalView.m ([UIxCalView -dayStartHour]): returns 0. + ([UIxCalView -dayEndHour]): returns 24. + * UI/Contacts/UIxContactFoldersView.m ([UIxContactFoldersView -defaultAction]) ([UIxContactFoldersView -newAction]): invoke _selectActionForApplication: on self with the proper attribute too. diff --git a/UI/Scheduler/UIxCalView.m b/UI/Scheduler/UIxCalView.m index e08d0229e..3b812323d 100644 --- a/UI/Scheduler/UIxCalView.m +++ b/UI/Scheduler/UIxCalView.m @@ -375,12 +375,12 @@ static BOOL shouldDisplayWeekend = NO; - (unsigned) dayStartHour { - return 8; + return 0; } - (unsigned) dayEndHour { - return 18; + return 24; } - (BOOL) shouldDisplayWeekend