mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-20 12:16:40 +00:00
Removed references to cStringNoCopy.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@2990 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1a0efaad7c
commit
0806cb068b
27 changed files with 143 additions and 149 deletions
|
@ -304,7 +304,7 @@ NSHashInsertKnownAbsent(NSHashTable *table, const void *element)
|
|||
* date. */
|
||||
[NSException raise:NSInvalidArgumentException
|
||||
format:@"NSHashTable: illegal reinsertion of: %s",
|
||||
[NSHT_DESCRIBE(table, element) cStringNoCopy]];
|
||||
[NSHT_DESCRIBE(table, element) cString]];
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -358,7 +358,7 @@ NSStringFromHashTable(NSHashTable *table)
|
|||
* each to the mutable string STRING. */
|
||||
while ((pointer = NSNextHashEnumeratorItem(&enumerator)) != 0)
|
||||
[string appendFormat:@"%s;\n",
|
||||
[NSHT_DESCRIBE(table, pointer) cStringNoCopy]];
|
||||
[NSHT_DESCRIBE(table, pointer) cString]];
|
||||
|
||||
/* STRING is already autoreleased. */
|
||||
return (NSString *) string;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue