Fix a few more method names

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@38808 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Niels Grewe 2015-07-16 10:41:09 +00:00
parent 5cbc47a238
commit bac8e3a0f6
3 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
2015-07-16 Niels Grewe <niels.grewe@halbordnung.de>
* Source/GSSet.m
* Source/GSCountedSet.m:
Fix a few more names.
2015-07-16 Richard Frith-Macdonald <rfm@gnu.org>
* Headers/GNUstepBase/GSIMap.h:

View file

@ -395,7 +395,7 @@ static GC_descr nodeDesc; // Type descriptor for map node.
(&map, state, stackbuf, len);
}
- (NSUInteger) sizeInBytes: (NSHashTable*)exclude
- (NSUInteger) sizeInBytesExcluding: (NSHashTable*)exclude
{
NSUInteger size = GSPrivateMemorySize(self, exclude);
@ -408,7 +408,7 @@ static GC_descr nodeDesc; // Type descriptor for map node.
while (node != 0)
{
node = GSIMapEnumeratorNextNode(&enumerator);
size += [node->key.obj sizeInBytes: exclude];
size += [node->key.obj sizeInBytesExcluding: exclude];
}
GSIMapEndEnumerator(&enumerator);
}

View file

@ -538,7 +538,7 @@ static Class mutableSetClass;
(&map, state, stackbuf, len);
}
- (NSUInteger) sizeInBytes: (NSHashTable*)exclude
- (NSUInteger) sizeInBytesExcluding: (NSHashTable*)exclude
{
NSUInteger size = GSPrivateMemorySize(self, exclude);
@ -551,7 +551,7 @@ static Class mutableSetClass;
while (node != 0)
{
node = GSIMapEnumeratorNextNode(&enumerator);
size += [node->key.obj sizeInBytes: exclude];
size += [node->key.obj sizeInBytesExcluding: exclude];
}
GSIMapEndEnumerator(&enumerator);
}