PropertyListDictionary.st
changeset 2136 88cc2d6d4483
parent 2090 025a61199960
--- a/PropertyListDictionary.st	Mon Jul 03 18:10:17 2006 +0200
+++ b/PropertyListDictionary.st	Mon Jul 03 18:10:27 2006 +0200
@@ -142,7 +142,7 @@
     |coll|
 
     coll := OrderedCollection new.
-    coll add:(self class name asSymbol).
+    coll add:self class name.
 
     self keysAndValuesDo:[:aKey :aVal|
         coll add:aKey; add:(aVal literalArrayEncoding)
@@ -175,5 +175,5 @@
 !PropertyListDictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/PropertyListDictionary.st,v 1.6 2006-01-24 10:34:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/PropertyListDictionary.st,v 1.7 2006-07-03 16:10:27 stefan Exp $'
 ! !