mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-12 03:45:08 +00:00
Monotone-Parent: 8799c458544f40843eb4692288485d9d1aeec685
Monotone-Revision: 56b1de6e843c25b294505745dc96155ab59c7d97 Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2007-08-06T14:35:50 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
+12
-14
@@ -20,43 +20,41 @@
|
||||
*/
|
||||
// $Id: UIxAppNavView.m 281 2004-08-27 03:51:08Z helge $
|
||||
|
||||
#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 */
|
||||
|
||||
Reference in New Issue
Block a user