From e6507115be589a79622474647a8f46939ad75656 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sun, 30 Nov 2008 22:49:17 -0500 Subject: [PATCH] Use our new error system * Source/GDBpConnection.m: (processData:): Call -[errorEncountered] --- Source/GDBpConnection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/GDBpConnection.m b/Source/GDBpConnection.m index d103a11..31faa62 100644 --- a/Source/GDBpConnection.m +++ b/Source/GDBpConnection.m @@ -317,7 +317,7 @@ NSString *kErrorOccurredNotif = @"GDBpConnection_ErrorOccured_Notification"; NSArray *error = [[doc rootElement] elementsForName:@"error"]; if ([error count] > 0) { - [windowController setError:[[[[error objectAtIndex:0] children] objectAtIndex:0] stringValue]]; + [self errorEncountered:[[[[error objectAtIndex:0] children] objectAtIndex:0] stringValue]]; return nil; } -- 2.22.5