summaryrefslogtreecommitdiff
path: root/tikzit/src/gtk/GraphEditorPanel.m
diff options
context:
space:
mode:
authorAlex Merry <dev@randomguy3.me.uk>2013-03-25 18:15:11 +0000
committerAlex Merry <dev@randomguy3.me.uk>2013-03-25 18:36:52 +0000
commit0f969b6ced7e9ebcbe4bc4e17867ff32d67f27bb (patch)
tree9632ffa948332d8636c15537cb19356781a215ec /tikzit/src/gtk/GraphEditorPanel.m
parent1b83e14b1f5640881deeb03c1d11df5197746b64 (diff)
Catch some memory leaks
Memory usage on Linux no longer shoots up after running the tikz parser a handful of times.
Diffstat (limited to 'tikzit/src/gtk/GraphEditorPanel.m')
-rw-r--r--tikzit/src/gtk/GraphEditorPanel.m5
1 files changed, 4 insertions, 1 deletions
diff --git a/tikzit/src/gtk/GraphEditorPanel.m b/tikzit/src/gtk/GraphEditorPanel.m
index a1c63a2..fc50afc 100644
--- a/tikzit/src/gtk/GraphEditorPanel.m
+++ b/tikzit/src/gtk/GraphEditorPanel.m
@@ -125,9 +125,12 @@
return self;
}
- (id) init {
- [self dealloc];
+ [self release];
return nil;
}
+- (void) dealloc {
+ [super dealloc];
+}
// FIXME: use a local copy of HandTool to implement CTRL-dragging
- (void) mousePressAt:(NSPoint)pos withButton:(MouseButton)button andMask:(InputMask)mask {