From a488069ca7492e437dcff865187437e8e63d89a5 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 30 Nov 2008 23:11:05 -0500 Subject: [PATCH] One more instance of calling -[setStatus:] that needs to change * Source/GDBpConnection.m: (reconnect): Change the ivar rather than calling setStatus --- Source/GDBpConnection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/GDBpConnection.m b/Source/GDBpConnection.m index da3ff9c..fe23782 100644 --- a/Source/GDBpConnection.m +++ b/Source/GDBpConnection.m @@ -143,7 +143,7 @@ NSString *kErrorOccurredNotif = @"GDBpConnection_ErrorOccured_Notification"; - (void)reconnect { [socket close]; - [windowController setStatus:@"Connecting"]; + self.status = @"Connecting"; [windowController resetDisplays]; [socket connect]; } -- 2.22.5