(_collectionDealloc): Fix super call.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@177 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1995-03-23 03:41:40 +00:00
parent 1c6674f548
commit 7505741aa5
2 changed files with 2 additions and 2 deletions

View file

@ -145,7 +145,7 @@
- (void) _collectionDealloc
{
coll_hash_delete(_contents_hash);
[super dealloc];
[super _collectionDealloc];
}
/* This must work without sending any messages to content objects */

View file

@ -147,7 +147,7 @@
- (void) _collectionDealloc
{
coll_hash_delete(_contents_hash);
[super dealloc];
[super _collectionDealloc];
}
// SET OPERATIONS;