From 8bc528f0738b4e7c63fbf77b9a0ce2e76f72c141 Mon Sep 17 00:00:00 2001 From: mccallum Date: Sun, 3 Mar 1996 00:35:28 +0000 Subject: [PATCH] ([ConstantKeyedCollection -description]): Use object_get_class_name instead of -name. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1035 72102866-910b-0410-8b05-ffd578937521 --- Source/KeyedCollection.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/KeyedCollection.m b/Source/KeyedCollection.m index 7ed033b22..07b7b38d6 100644 --- a/Source/KeyedCollection.m +++ b/Source/KeyedCollection.m @@ -216,7 +216,7 @@ [s appendFormat: @"(%@,%@) ", [k description], [o description]]; } END_FOR_KEYED_COLLECTION(self); - [s appendFormat: @" :%s\n", [self name]]; + [s appendFormat: @" :%s\n", object_get_class_name (self)]; return [s autorelease]; }