From ec380ef78fcf6fc50a5e5f4d8c7b4df3a12f18a0 Mon Sep 17 00:00:00 2001 From: Andrew McCallum Date: Mon, 11 Mar 1996 17:02:02 +0000 Subject: [PATCH] ([IndexedCollection +initialize]): Compare self with IndexedCollection, not KeyedCollection. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1096 72102866-910b-0410-8b05-ffd578937521 --- Source/IndexedCollection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/IndexedCollection.m b/Source/IndexedCollection.m index c173e15ab..9ab067335 100644 --- a/Source/IndexedCollection.m +++ b/Source/IndexedCollection.m @@ -327,7 +327,7 @@ + (void) initialize { - if (self == [KeyedCollection class]) + if (self == [IndexedCollection class]) class_add_behavior(self, [Collection class]); }