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:
Wolfgang Sourdeau
2007-08-06 14:35:50 +00:00
parent 6afa336110
commit 7a9f0e6dc8
3 changed files with 33 additions and 39 deletions
+12 -14
View File
@@ -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 */