ColorValue.st
changeset 2135 23d8fadd9577
parent 495 d15be0a1abc6
child 3452 8ae6c04fa1b4
--- 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 $'
 ! !