Color.st
changeset 4533 0ac6babcc37f
parent 4422 b53d63b7a18f
child 4535 9b9d6b7fa221
--- a/Color.st	Mon Jul 03 18:10:02 2006 +0200
+++ b/Color.st	Mon Jul 03 18:10:14 2006 +0200
@@ -4308,7 +4308,7 @@
     "
 
     ^ Array
-        with:self class name asSymbol
+        with:self class name
         with:(red * 100.0 / MaxValue)
         with:(green * 100.0 / MaxValue)
         with:(blue * 100.0 / MaxValue)
@@ -5353,7 +5353,7 @@
 !Color class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Color.st,v 1.197 2005-09-13 22:34:45 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Color.st,v 1.198 2006-07-03 16:10:14 stefan Exp $'
 ! !
 
 Color initialize!