call self, not the view, to interrupt

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@39718 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Riccardo Mottola 2016-05-03 21:47:41 +00:00
parent 18d31ca7ee
commit 21ddb6e18a

View file

@ -251,7 +251,7 @@ static NSImage *downImage = nil;
- (void) pause: (id) sender
{
[self setStatus: @"Stopped."];
[debuggerView interrupt];
[self interrupt];
}
- (void) continue: (id) sender
@ -263,7 +263,7 @@ static NSImage *downImage = nil;
- (void) restart: (id) sender
{
[self setStatus: @"Restarting..."];
[debuggerView interrupt];
[self interrupt];
[debuggerView putString: @"run\n"];
[self setStatus: @"Running..."];
}