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