From 218d8f84dbfd47bd21d7c15f6c6b4dd8cc1ff801 Mon Sep 17 00:00:00 2001 From: Nicola Pero Date: Fri, 27 Apr 2007 12:06:13 +0000 Subject: [PATCH] Fixed part of launching an application git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@25086 72102866-910b-0410-8b05-ffd578937521 --- Documentation/ChangeLog | 5 +++++ Framework/PCProject.m | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Documentation/ChangeLog b/Documentation/ChangeLog index 1be4162..2ba4b54 100644 --- a/Documentation/ChangeLog +++ b/Documentation/ChangeLog @@ -1,3 +1,8 @@ +2007-04-27 Nicola Pero + + * PCProject.m ([-execToolName]): Fixed typo where 'ExecuToolName' + had been typed instead of 'ExecToolName'. + 2007-03-06 Nicola Pero * GNUmakefile: Set GNUSTEP_MAKEFILES using gnustep-config if not yet set. diff --git a/Framework/PCProject.m b/Framework/PCProject.m index 57ffe7a..7ab401a 100644 --- a/Framework/PCProject.m +++ b/Framework/PCProject.m @@ -680,7 +680,7 @@ NSString - (NSString *)execToolName { - return [[self projectBundleInfoTable] objectForKey:@"ExecuToolName"]; + return [[self projectBundleInfoTable] objectForKey:@"ExecToolName"]; } - (NSArray *)buildTargets