From bede9f2b1e1541f6b22227f8e1283eb6bb217494 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Tue, 10 Jun 2008 14:21:05 -0400 Subject: [PATCH] Set the BreakpointManager's connection to the DebuggerConnection instance * Source/DebuggerConnection.m: (initWithWindowController:port:session): Set the connection to be self --- Source/DebuggerConnection.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/DebuggerConnection.m b/Source/DebuggerConnection.m index c1d260d..de543e1 100644 --- a/Source/DebuggerConnection.m +++ b/Source/DebuggerConnection.m @@ -18,10 +18,8 @@ #import "AppDelegate.h" @interface DebuggerConnection (Private) - - (NSString *)createCommand:(NSString *)cmd; - (NSXMLDocument *)processData:(NSString *)data; - @end @implementation DebuggerConnection @@ -46,6 +44,8 @@ socket = [[SocketWrapper alloc] initWithConnection:self]; [socket setDelegate:self]; [socket connect]; + + [[BreakpointManager sharedManager] setConnection:self]; } return self; } -- 2.22.5