mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-14 06:31:31 +00:00
Commands need new-line
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@40224 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
3edc315827
commit
b9df6e5d27
2 changed files with 12 additions and 2 deletions
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
|||
2016-11-18 Riccardo Mottola <rm@gnu.org>
|
||||
|
||||
* Modules/Projects/Application/PCAppProject+Inspector.h
|
||||
* Modules/Projects/Application/PCAppProject+Inspector.m
|
||||
* Modules/Projects/Application/Resources/Inspector.gorm
|
||||
Connect add/remove buttons.
|
||||
|
||||
* Modules/Debuggers/ProjectCenter/PipeDelegate.m
|
||||
Commands need new-line.
|
||||
|
||||
2016-11-17 09:20-EST Gregory John Casamento <greg.casamento@gmail.com>
|
||||
|
||||
* Modules/Debuggers/ProjectCenter/PipeDelegate.m: Change flag to yes
|
||||
|
|
|
@ -671,14 +671,14 @@
|
|||
|
||||
fileName = [bp objectForKey:PCBreakFilename];
|
||||
lineNumber = [bp objectForKey:PCBreakLineNumber];
|
||||
bpString = [NSString stringWithFormat:@"-break-insert -f %@:%@", fileName, lineNumber];
|
||||
bpString = [NSString stringWithFormat:@"-break-insert -f %@:%@\n", fileName, lineNumber];
|
||||
}
|
||||
else if ([bpType isEqualToString:PCBreakTypeMethod])
|
||||
{
|
||||
NSString *methodName;
|
||||
|
||||
methodName = [bp objectForKey:PCBreakMethod];
|
||||
bpString = [NSString stringWithFormat:@"-interpreter-exec console \"break %@\"", methodName];
|
||||
bpString = [NSString stringWithFormat:@"-interpreter-exec console \"break %@\"\n", methodName];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue