summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/SelectBoxLayer.m
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/osx/SelectBoxLayer.m')
-rw-r--r--tikzit/src/osx/SelectBoxLayer.m4
1 files changed, 2 insertions, 2 deletions
diff --git a/tikzit/src/osx/SelectBoxLayer.m b/tikzit/src/osx/SelectBoxLayer.m
index c198ffa..a7abe33 100644
--- a/tikzit/src/osx/SelectBoxLayer.m
+++ b/tikzit/src/osx/SelectBoxLayer.m
@@ -14,7 +14,7 @@
@synthesize active;
- (id)init {
- [super init];
+ if (!(self = [super init])) return nil;
box = CGRectMake(0.0f, 0.0f, 0.0f, 0.0f);
active = NO;
return self;
@@ -42,7 +42,7 @@
}
+ (SelectBoxLayer*)layer {
- return [[[SelectBoxLayer alloc] init] autorelease];
+ return [[SelectBoxLayer alloc] init];
}
@end