mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-17 08:01:24 +00:00
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:
parent
18d31ca7ee
commit
21ddb6e18a
1 changed files with 2 additions and 2 deletions
|
@ -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..."];
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue