summaryrefslogtreecommitdiff
path: root/tikzit/src/osx/NodeLayer.h
diff options
context:
space:
mode:
authorJohan Paulsson <gonz@badcode.net>2014-03-23 02:48:06 +0000
committerJohan Paulsson <gonz@badcode.net>2014-03-23 02:48:06 +0000
commit5532f8878b7219720de6145eabbe57efb894957c (patch)
tree25e3ce1d092bc3e57096f63989e98409870d3e9b /tikzit/src/osx/NodeLayer.h
parent2d6b88d5d016237acbc8cb63f2cf2477ccfe9e69 (diff)
Converting from GC to ARC
This should only be for the osx specific code as all common files are left out. Hopefully this shouldn't introduce any problems on the other systems.
Diffstat (limited to 'tikzit/src/osx/NodeLayer.h')
-rw-r--r--tikzit/src/osx/NodeLayer.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tikzit/src/osx/NodeLayer.h b/tikzit/src/osx/NodeLayer.h
index dfe05e8..d2a943b 100644
--- a/tikzit/src/osx/NodeLayer.h
+++ b/tikzit/src/osx/NodeLayer.h
@@ -30,7 +30,7 @@
#import "NodeSelectionLayer.h"
@interface NodeLayer : CALayer {
- Node *node;
+ Node *__weak node;
Shape *shape;
CGMutablePathRef path;
float textwidth;
@@ -42,10 +42,10 @@
BOOL dirty; // need to rebuild CGBezierPath of the shape
}
-@property Node *node;
+@property (weak) Node *node;
@property (assign) NSPoint center;
@property (assign) BOOL rescale;
-@property (retain) NodeSelectionLayer *selection;
+@property (strong) NodeSelectionLayer *selection;
@property (readonly) CGMutablePathRef path;
- (id)initWithNode:(Node*)n transformer:(Transformer*)t;