One more instance of calling -[setStatus:] that needs to change
authorRobert Sesek <rsesek@bluestatic.org>
Mon, 1 Dec 2008 04:11:05 +0000 (23:11 -0500)
committerRobert Sesek <rsesek@bluestatic.org>
Mon, 1 Dec 2008 04:11:05 +0000 (23:11 -0500)
* Source/GDBpConnection.m:
(reconnect): Change the ivar rather than calling setStatus

Source/GDBpConnection.m

index da3ff9c1ded1cbe10c18ab89f3463c258211347a..fe23782a5f7b4d42a995d14ae939d1df0fa21fa7 100644 (file)
@@ -143,7 +143,7 @@ NSString *kErrorOccurredNotif = @"GDBpConnection_ErrorOccured_Notification";
 - (void)reconnect
 {
        [socket close];
-       [windowController setStatus:@"Connecting"];
+       self.status = @"Connecting";
        [windowController resetDisplays];
        [socket connect];
 }