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:
Riccardo Mottola 2016-11-18 00:23:54 +00:00
parent 3edc315827
commit b9df6e5d27
2 changed files with 12 additions and 2 deletions

View file

@ -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

View file

@ -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
{