mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-04-23 23:48:46 +00:00
fixed description
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@30220 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
32433df47e
commit
9ef5289600
2 changed files with 4 additions and 3 deletions
|
@ -11,6 +11,8 @@
|
|||
* fix index
|
||||
NSString+HTML.m, GSWBaseParser.m, GSWDeclarationParser.m, GSWHTMLRawParser.m
|
||||
* use NSZoneMalloc()
|
||||
GSWMultiKeyDictionary.m:
|
||||
* fixed description
|
||||
|
||||
2010-04-16 David Wetzel <dave@turbocat.de>
|
||||
* fixed memory leak
|
||||
|
|
|
@ -41,7 +41,6 @@ RCS_ID("$Id$")
|
|||
#ifndef GNUSTEP
|
||||
#include <GNUstepBase/GNUstep.h>
|
||||
#include <GNUstepBase/GSObjCRuntime.h>
|
||||
#include <GNUstepBase/GSCategories.h>
|
||||
#endif
|
||||
|
||||
#define DEFAULT_DICTIONARY_CAPACITY 32
|
||||
|
@ -1094,9 +1093,9 @@ static void GSWMapBaseInitWithZoneAndCapacity(GSWMapBase base,
|
|||
{
|
||||
NSString* descr=nil;
|
||||
//TODO
|
||||
descr=[NSString stringWithFormat:@"<%s %@>",
|
||||
descr=[NSString stringWithFormat:@"<%@ %p allValues=%@>",
|
||||
NSStringFromClass([self class]),
|
||||
(void*)self];
|
||||
(void*)self, [self allValues]];
|
||||
return descr;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue