category change
authorClaus Gittinger <cg@exept.de>
Tue, 22 Aug 2000 15:56:47 +0200
changeset 3265 408fac627dc4
parent 3264 ab71c2bd250f
child 3266 4db6dd90cc17
category change
Colormap.st
FontDescription.st
--- a/Colormap.st	Tue Aug 22 12:11:24 2000 +0200
+++ b/Colormap.st	Tue Aug 22 15:56:47 2000 +0200
@@ -10,6 +10,8 @@
  hereby transferred.
 "
 
+"{ Package: 'stx:libview' }"
+
 SequenceableCollection subclass:#Colormap
 	instanceVariableNames:'redVector greenVector blueVector'
 	classVariableNames:''
@@ -204,14 +206,6 @@
     ^ (redVector at:index) * 100 / 255
 
     "Modified: 2.5.1996 / 17:29:44 / cg"
-!
-
-size
-    "return the number of colors in the receiver"
-
-    ^ redVector size
-
-    "Modified: 23.4.1996 / 22:13:43 / cg"
 ! !
 
 !Colormap methodsFor:'accessing-internals'!
@@ -352,6 +346,14 @@
     ^ minIndex
 
     "Created: 6.3.1997 / 15:45:39 / cg"
+!
+
+size
+    "return the number of colors in the receiver"
+
+    ^ redVector size
+
+    "Modified: 23.4.1996 / 22:13:43 / cg"
 ! !
 
 !Colormap methodsFor:'storing'!
@@ -375,5 +377,5 @@
 !Colormap class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Colormap.st,v 1.26 1999-03-05 17:05:40 tm Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Colormap.st,v 1.27 2000-08-22 13:56:15 cg Exp $'
 ! !
--- a/FontDescription.st	Tue Aug 22 12:11:24 2000 +0200
+++ b/FontDescription.st	Tue Aug 22 15:56:47 2000 +0200
@@ -453,12 +453,6 @@
     "Created: 25.1.1997 / 03:12:43 / cg"
 !
 
-size
-    "return the size, a number"
-
-    ^ size
-!
-
 style
     "return the style, a string"
 
@@ -741,6 +735,12 @@
     "Modified: 11.4.1997 / 21:31:51 / cg"
 !
 
+size
+    "return the size, a number"
+
+    ^ size
+!
+
 species
     ^ Font
 !
@@ -940,6 +940,6 @@
 !FontDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.37 2000-08-15 14:21:55 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/FontDescription.st,v 1.38 2000-08-22 13:56:47 cg Exp $'
 ! !
 FontDescription initialize!