From f7650a05ffbd5b9df5972c74944f04ec464badac Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 5 Aug 2007 00:25:22 -0700 Subject: [PATCH] Fixing a compiler error for a missing variable * Source/DebuggerConnection.m: ([DebuggerConnection getProperty:forElement:]): We were still referencing a depth variable when we removed it --- Source/DebuggerConnection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/DebuggerConnection.m b/Source/DebuggerConnection.m index 5528ab3..48f4447 100644 --- a/Source/DebuggerConnection.m +++ b/Source/DebuggerConnection.m @@ -265,7 +265,7 @@ */ - (void)getProperty: (NSString *)property forElement: (NSXMLElement *)elm { - [_socket send: [self createCommand: [NSString stringWithFormat: @"property_get -n \"%@\"", property, depth]]]; + [_socket send: [self createCommand: [NSString stringWithFormat: @"property_get -n \"%@\"", property]]]; _depthFetchElement = elm; [_socket receive: @selector(propertyReceived:)]; } -- 2.22.5