#TUNING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 04 May 2016 13:01:54 +0200
changeset 5055 4f266b85fb43
parent 5054 a660f11bc670
child 5056 4fd8ecbcfb1b
#TUNING by cg class: DataSetLabel changed:7 methods
DataSetLabel.st
--- a/DataSetLabel.st	Wed May 04 13:01:39 2016 +0200
+++ b/DataSetLabel.st	Wed May 04 13:01:54 2016 +0200
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libwidg2' }"
 
+"{ NameSpace: Smalltalk }"
+
 Object subclass:#DataSetLabel
 	instanceVariableNames:'label selector argument adjust font fgColor bgColor
 		preferredHeight preferredWidth description'
@@ -67,7 +69,7 @@
                 width:7;
                 height:4;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'@@B@0 @a');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -97,7 +99,7 @@
                 width:7;
                 height:5;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'@@@@@@@b');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -131,7 +133,7 @@
                 width:7;
                 height:4;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'@@B@0 @a');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -161,7 +163,7 @@
                 width:7;
                 height:4;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'0(@@@@@a');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -191,7 +193,7 @@
                 width:7;
                 height:5;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'@@@@@@@b');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -221,7 +223,7 @@
                 width:7;
                 height:5;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'@@@@@@@b');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -251,7 +253,7 @@
                 width:7;
                 height:4;
                 photometric:(#palette);
-                bitsPerSample:(#( 1 ));
+                bitsPerSample:(#[1]);
                 samplesPerPixel:(1);
                 bits:(ByteArray fromPackedString:'0(@@@@@a');
                 colorMapFromArray:#[ 0 0 0 255 255 255 ];
@@ -576,10 +578,10 @@
 !DataSetLabel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.33 2014-06-21 11:49:41 cg Exp $'
+    ^ '$Header$'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libwidg2/DataSetLabel.st,v 1.33 2014-06-21 11:49:41 cg Exp $'
+    ^ '$Header$'
 ! !