repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Documented GVF_SAVE_VAR alongside other flags, and removed a query/doubt
[AROS.git]
/
arch
/
all-ios
/
hidd
/
uikit
/
displaywindow.m
blob
548ab577ef819ba7df14bc89ed1c9dea3baedcf0
1
#import "displaywindow.h"
2
3
@implementation DisplayWindow
4
5
-(id)initWithFrame:(CGRect)frame
6
{
7
self = [super initWithFrame:frame];
8
if (self)
9
{
10
controller = [[DisplayController alloc] initWithSize:frame];
11
12
[self addSubview:controller.view];
13
}
14
return self;
15
}
16
17
-(void)dealloc
18
{
19
[controller release];
20
21
[super dealloc];
22
}
23
24
@end