]> err.no Git - scalable-opengroupware.org/blobdiff - UI/Common/UIxAppNavView.m
git-svn-id: http://svn.opengroupware.org/SOGo/inverse/trunk@1162 d1b88da0-ebda-0310...
[scalable-opengroupware.org] / UI / Common / UIxAppNavView.m
index 8c14e154f6ebecea8bdd762feceb91066cc23546..87dfc0983c3a16376176591b1ce1e53edaf29eb0 100644 (file)
   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
   02111-1307, USA.
 */
-// $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 */