+2004-11-08 Helge Hess <helge.hess@skyrix.com>
+
+ * UIxAppointmentPrintview.m: fixed a compile warning (v0.9.93)
+
2004-10-26 Marcus Mueller <znek@mulle-kybernetik.com>
* UIxAppointmentProposal.wox: uses dayLabelFormat instead of hardcoded
Example:
format: @"%S - %E, \n%T";
-
- */
+*/
@class NSCalendarDate;
BOOL showFullNames; // try to show full names of participants
}
-//init
+/* init */
+
- (id)initWithFormat:(NSString *)_format;
+ (UIxAppointmentFormatter *)formatterWithFormat:(NSString *)_format;
+ (UIxAppointmentFormatter *)formatter;
-//accessors
+/* accessors */
+
- (void)setFormat:(NSString *)_format;
- (NSString *)format;
- (void)setShowFullNames:(BOOL)_flag;
- (BOOL)showFullNames;
-// easy switches
+/* easy switches */
-// this resets the date format
+/* this resets the date format */
- (void)switchToAMPMTimes:(BOOL)_showAMPM;
@end
/*
- Copyright (C) 2000-2004 SKYRIX Software AG
+ Copyright (C) 2004 SKYRIX Software AG
- This file is part of OGo
+ This file is part of OpenGroupware.org.
OGo is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
02111-1307, USA.
*/
-// $Id$
-
#include "UIxAppointmentView.h"
-
@interface UIxAppointmentPrintview : UIxAppointmentView
{
}
@end
#include "common.h"
+#include <SOGo/UI/SOGoUI/SOGoDateFormatter.h>
@implementation UIxAppointmentPrintview
- (NSString *)title {
- return [[self dateFormatter] stringForObjectValue:[self startTime]];
+ return [[self dateFormatter] stringForObjectValue:[self startTime]];
}
-@end
+@end /* UIxAppointmentPrintview */