# HG changeset patch # User Claus Gittinger # Date 1462359714 -7200 # Node ID 4f266b85fb4351961f8b78e0b3b1c04a74f47c69 # Parent a660f11bc670691e3aa01ec2aa23442daa2d78e5 #TUNING by cg class: DataSetLabel changed:7 methods diff -r a660f11bc670 -r 4f266b85fb43 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$' ! !