From 5665fcb48c78b6c82140f6ba629ee22341f2259a Mon Sep 17 00:00:00 2001 From: Adam Roben Date: Tue, 6 Mar 2012 13:27:47 -0800 Subject: [PATCH] Fix compiler error in Xcode 4.3 Presumably this also indicated infinite recursion, but I don't believe Atom is ever actually deallocated. --- Atom/src/Atom.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Atom/src/Atom.mm b/Atom/src/Atom.mm index 20b2eceae..d8ebe4d73 100755 --- a/Atom/src/Atom.mm +++ b/Atom/src/Atom.mm @@ -24,7 +24,7 @@ - (void)dealloc { [_hiddenWindow release]; - [self dealloc]; + [super dealloc]; } - (BOOL)isHandlingSendEvent {