summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/NodeLayer.m
diff options
context:
space:
mode:
Diffstat (limited to 'tikzit/src/osx/NodeLayer.m')
-rw-r--r--tikzit/src/osx/NodeLayer.m3
1 files changed, 1 insertions, 2 deletions
diff --git a/tikzit/src/osx/NodeLayer.m b/tikzit/src/osx/NodeLayer.m
index 2c37c26..5d15585 100644
--- a/tikzit/src/osx/NodeLayer.m
+++ b/tikzit/src/osx/NodeLayer.m
@@ -34,7 +34,7 @@
@synthesize node, selection, rescale;
- (id)initWithNode:(Node *)n transformer:(Transformer*)t {
- [super init];
+ if (!(self = [super init])) return nil;
node = n;
selection = [[NodeSelectionLayer alloc] init];
[selection setNodeLayer:self];
@@ -233,7 +233,6 @@
- (void)dealloc {
if (path != NULL) CFRelease(path);
- [super dealloc];
}
@end