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
+14 -10
View File
@@ -19,31 +19,35 @@
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 */