Fix comments.
authorStefan Vogel <sv@exept.de>
Mon, 03 Jul 2006 18:10:17 +0200
changeset 2135 23d8fadd9577
parent 2134 0ef95141831c
child 2136 88cc2d6d4483
Fix comments. Streamline #literalArrayEncoding
ColorValue.st
--- a/ColorValue.st	Mon Jul 03 18:10:12 2006 +0200
+++ b/ColorValue.st	Mon Jul 03 18:10:17 2006 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libview2' }"
+
 Color subclass:#ColorValue
 	instanceVariableNames:''
 	classVariableNames:''
@@ -199,7 +201,7 @@
     "
 
     ^ Array
-        with:self class name asSymbol
+        with:self class name
         with:(self scaledRed)
         with:(self scaledGreen)
         with:(self scaledBlue)
@@ -215,5 +217,5 @@
 !ColorValue class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/ColorValue.st,v 1.16 1997-03-06 14:45:30 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/ColorValue.st,v 1.17 2006-07-03 16:10:17 stefan Exp $'
 ! !