mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-20 18:32:17 +00:00
fix redundant format parameters
This commit is contained in:
parent
7ce2cd367a
commit
f5bdb40882
1 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
GNUstep ProjectCenter - http://www.gnustep.org/experience/ProjectCenter.html
|
||||||
|
|
||||||
Copyright (C) 2005-2018 Free Software Foundation
|
Copyright (C) 2005-2023 Free Software Foundation
|
||||||
|
|
||||||
Authors: Serg Stoyan
|
Authors: Serg Stoyan
|
||||||
Riccardo Mottola
|
Riccardo Mottola
|
||||||
|
@ -321,9 +321,9 @@
|
||||||
[mff appendString: [NSString stringWithFormat:@"%@_AGSDOC_FILES = %@.gsdoc \\\n",
|
[mff appendString: [NSString stringWithFormat:@"%@_AGSDOC_FILES = %@.gsdoc \\\n",
|
||||||
projectName, projectName]];
|
projectName, projectName]];
|
||||||
[mff appendString: [NSString stringWithFormat:@"\t$(%@_HEADER_FILES) \\\n",
|
[mff appendString: [NSString stringWithFormat:@"\t$(%@_HEADER_FILES) \\\n",
|
||||||
projectName, projectName]];
|
projectName]];
|
||||||
[mff appendString: [NSString stringWithFormat:@"\t$(%@_OBJC_FILES) \\\n",
|
[mff appendString: [NSString stringWithFormat:@"\t$(%@_OBJC_FILES) \\\n",
|
||||||
projectName, projectName]];
|
projectName]];
|
||||||
[mff appendString: [NSString stringWithFormat:@"\n\n%@_AGSDOC_FLAGS += -MakeFrames YES\n", projectName]];
|
[mff appendString: [NSString stringWithFormat:@"\n\n%@_AGSDOC_FLAGS += -MakeFrames YES\n", projectName]];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue