mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
* Tools/autogsdoc.m, AGSHtml.m, AGSIndex.m, AGSOutput.m: Add
MacOSX compatibility headers. * Tools/AGSParser.m: Idem. (-log:arguments:): Replace strinWithFormat:arguments: with initWithFormat:arguments: git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@16282 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7d885b66c8
commit
15d28d8074
6 changed files with 26 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2003-03-27 Stephane Corthesy <stephane@sente.ch>
|
||||
|
||||
* Tools/autogsdoc.m, AGSHtml.m, AGSIndex.m, AGSOutput.m: Add
|
||||
MacOSX compatibility headers.
|
||||
* Tools/AGSParser.m: Idem.
|
||||
(-log:arguments:): Replace strinWithFormat:arguments: with
|
||||
initWithFormat:arguments:
|
||||
|
||||
2003-03-26 David Ayers <d.ayers@inode.at>
|
||||
|
||||
* Source/NSKeyValueCoding.m: Added documentation.
|
||||
|
|
|
@ -23,6 +23,10 @@
|
|||
#include <Foundation/Foundation.h>
|
||||
#include "AGSHtml.h"
|
||||
#include "gnustep/base/GNUstep.h"
|
||||
#ifdef NeXT_Foundation_LIBRARY
|
||||
#include "gnustep/base/GSCategories.h"
|
||||
#include "gnustep/base/GSCompatibility.h"
|
||||
#endif
|
||||
|
||||
static int XML_ELEMENT_NODE;
|
||||
static int XML_ENTITY_REF_NODE;
|
||||
|
|
|
@ -23,6 +23,10 @@
|
|||
#include <Foundation/Foundation.h>
|
||||
#include "AGSIndex.h"
|
||||
#include "gnustep/base/GNUstep.h"
|
||||
#ifdef NeXT_Foundation_LIBRARY
|
||||
#include "gnustep/base/GSCategories.h"
|
||||
#include "gnustep/base/GSCompatibility.h"
|
||||
#endif
|
||||
|
||||
static int XML_ELEMENT_NODE;
|
||||
static int XML_TEXT_NODE;
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
|
||||
#include "AGSOutput.h"
|
||||
#include "gnustep/base/GNUstep.h"
|
||||
#ifdef NeXT_Foundation_LIBRARY
|
||||
#include "gnustep/base/GSCategories.h"
|
||||
#endif
|
||||
|
||||
@interface AGSOutput (Private)
|
||||
- (NSString*) mergeMarkup: (NSString*)markup
|
||||
|
|
|
@ -22,6 +22,9 @@
|
|||
|
||||
#include "AGSParser.h"
|
||||
#include "gnustep/base/GNUstep.h"
|
||||
#ifdef NeXT_Foundation_LIBRARY
|
||||
#include "gnustep/base/GSCategories.h"
|
||||
#endif
|
||||
|
||||
@implementation AGSParser
|
||||
|
||||
|
@ -190,7 +193,7 @@
|
|||
{
|
||||
fmt = [NSString stringWithFormat: @"%@:%u %@", fileName, where, fmt];
|
||||
}
|
||||
fmt = [NSString stringWithFormat: fmt arguments: args];
|
||||
fmt = [[[NSString alloc] initWithFormat: fmt arguments: args] autorelease];
|
||||
if ([fmt hasSuffix: @"\n"] == NO)
|
||||
{
|
||||
fmt = [fmt stringByAppendingString: @"\n"];
|
||||
|
|
|
@ -507,6 +507,9 @@
|
|||
#include "AGSIndex.h"
|
||||
#include "AGSHtml.h"
|
||||
#include "gnustep/base/GNUstep.h"
|
||||
#ifdef NeXT_Foundation_LIBRARY
|
||||
#include "gnustep/base/GSCategories.h"
|
||||
#endif
|
||||
|
||||
int
|
||||
main(int argc, char **argv, char **env)
|
||||
|
|
Loading…
Reference in a new issue