mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-29 10:17:35 +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:
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user