SOGoMailFolder.m \
SOGoSharedInboxFolder.m \
SOGoMailObject.m \
- SOGoMailFolderDataSource.m \
SOGoTrashFolder.m \
\
SOGoMailBodyPart.m \
*/
// $Id$
-#include <SOGoUI/UIxComponent.h>
+#import <NGObjWeb/SoObject+SoDAV.h>
+#import <NGObjWeb/WOContext+SoObjects.h>
+
+#import <SOGoUI/UIxComponent.h>
@interface UIxAppNavView : UIxComponent
{
- id element;
- id lastElement;
+ id element;
+ id lastElement;
}
@end
-#include <NGObjWeb/NGObjWeb.h>
-#include <NGObjWeb/SoObject+SoDAV.h>
-#include <NGObjWeb/WOContext+SoObjects.h>
-#include "common.h"
-
@implementation UIxAppNavView
- (void)dealloc {
- [self->element release];
- [self->lastElement release];
+ [element release];
+ [lastElement release];
[super dealloc];
}
/* accessors */
- (void)setElement:(id)_element {
- ASSIGN(self->element, _element);
+ ASSIGN(element, _element);
}
- (id)element {
- return self->element;
+ return element;
}
- (void)setLastElement:(id)_element {
- ASSIGN(self->lastElement, _element);
+ ASSIGN(lastElement, _element);
}
- (id)lastElement {
- return self->lastElement;
+ return lastElement;
}
/* navigation */
02111-1307, USA.
*/
-#include <NGObjWeb/SoComponent.h>
+#import <NGObjWeb/SoComponent.h>
+
+@class NSString;
@interface UIxPrintPageFrame : SoComponent
{
- NSString *title;
+ NSString *title;
}
@end
-#include "common.h"
-
@implementation UIxPrintPageFrame
-- (void)dealloc {
- [self->title release];
+- (void) dealloc
+{
+ [title release];
[super dealloc];
}
/* accessors */
-- (void)setTitle:(NSString *)_value {
- ASSIGNCOPY(self->title, _value);
+- (void)setTitle: (NSString *) _value
+{
+ ASSIGNCOPY (title, _value);
}
-- (NSString *)title {
- return self->title;
+
+- (NSString *) title
+{
+ return title;
}
@end /* UIxPrintPageFrame */
02111-1307, USA.
*/
-#include "SOGoAptFormatter.h"
-#include "common.h"
+#import <NGExtensions/NSCalendarDate+misc.h>
+#import <NGExtensions/NSObject+Logs.h>
+#import <NGExtensions/NSNull+misc.h>
+
+#import "SOGoAptFormatter.h"
@interface SOGoAptFormatter(PrivateAPI)
- (NSString *)titleForApt:(id)_apt :(NSCalendarDate *)_refDate;
// $Id$
-#include "SOGoJSStringFormatter.h"
-#include "common.h"
+#import "SOGoJSStringFormatter.h"
@implementation SOGoJSStringFormatter
02111-1307, USA.
*/
-#include "WOContext+UIx.h"
-#include "common.h"
+#import <Foundation/NSUserDefaults.h>
+#import <Foundation/NSValue.h>
+
+#import "WOContext+UIx.h"
@implementation WOContext (UIx)