Monotone-Parent: c37d20558aab1e595ecc94449329012e816a91e0

Monotone-Revision: 8fda9dc133b4eae440b311a371fc6bfced15fb8e

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2006-11-02T21:49:21
Monotone-Branch: ca.inverse.sogo
maint-2.0.2
Wolfgang Sourdeau 2006-11-02 21:49:21 +00:00
parent 370bdce904
commit 3557c83592
4 changed files with 30 additions and 27 deletions

View File

@ -1,3 +1,8 @@
2006-11-02 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxCalMonthView.[hm]: renamed to
UIxCalMonthViewOld.[hm].
2006-11-01 Wolfgang Sourdeau <wsourdeau@inverse.ca>
* UI/Scheduler/UIxFreeBusyUserSelectorTable.m

View File

@ -1,25 +0,0 @@
// $Id: UIxCalMonthView.h 163 2004-08-02 12:59:28Z znek $
#ifndef __SOGo_UIxCalMonthView_H__
#define __SOGo_UIxCalMonthView_H__
#include "UIxCalView.h"
/*
UIxCalMonthView
Abstract superclass for views which display months.
*/
@interface UIxCalMonthView : UIxCalView
{
}
- (NSCalendarDate *)startOfMonth;
- (NSDictionary *)prevMonthQueryParameters;
- (NSDictionary *)nextMonthQueryParameters;
@end
#endif /* __SOGo_UIxCalMonthView_H__ */

View File

@ -0,0 +1,23 @@
// $Id: UIxCalMonthView.h 163 2004-08-02 12:59:28Z znek $
#ifndef __SOGo_UIxCalMonthViewOld_H__
#define __SOGo_UIxCalMonthViewOld_H__
#include "UIxCalView.h"
/*
UIxCalMonthView
Abstract superclass for views which display months.
*/
@interface UIxCalMonthViewOld : UIxCalView
- (NSCalendarDate *) startOfMonth;
- (NSDictionary *) prevMonthQueryParameters;
- (NSDictionary *) nextMonthQueryParameters;
@end
#endif /* __SOGo_UIxCalMonthViewOld_H__ */

View File

@ -1,10 +1,10 @@
// $Id: UIxCalMonthView.m 191 2004-08-12 16:28:32Z helge $
#include <SOGo/NSCalendarDate+SOGo.h>
#include "UIxCalMonthView.h"
#include "UIxCalMonthViewOld.h"
#include "common.h"
@implementation UIxCalMonthView
@implementation UIxCalMonthViewOld
- (NSCalendarDate *)startOfMonth {
return [[[super startDate] firstDayOfMonth] beginOfDay];