image resource method fixes (key must be name of method)
authorClaus Gittinger <cg@exept.de>
Sun, 07 Dec 2008 23:27:34 +0100
changeset 3603 c93203750a0b
parent 3602 f5b68b5591c3
child 3604 a664d6246c21
image resource method fixes (key must be name of method)
MenuPanel.st
--- a/MenuPanel.st	Wed Dec 03 22:13:32 2008 +0100
+++ b/MenuPanel.st	Sun Dec 07 23:27:34 2008 +0100
@@ -577,7 +577,7 @@
     <resource: #image>
 
     ^Icon
-        constantNamed:#'MenuPanel::Item class menuIndicator'
+        constantNamed:#'MenuPanel class menuIndicator'
         ifAbsentPut:[(Depth1Image new) width: 7; height: 4; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@B@0 @a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 7; height: 4; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?''08D@@a') ; yourself); yourself]
 ! !
 
@@ -7993,8 +7993,8 @@
     <resource: #image>
 
     ^Icon
-	constantNamed:#'MenuPanel::Scrolling class icon'
-	ifAbsentPut:[(Depth1Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>@@@@@@ @C@@N@@<@C8@O<@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@_<@? A<@C @D@@@@@@@@@@@a') ; yourself); yourself]
+        constantNamed:#'MenuPanel::ScrollActivity class icon'
+        ifAbsentPut:[(Depth1Image new) width: 11; height: 11; photometric:(#palette); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'?>@@@@@@ @C@@N@@<@C8@O<@@@@@@@@a') ; colorMapFromArray:#[0 0 0 255 255 255]; mask:((Depth1Image new) width: 11; height: 11; photometric:(#blackIs0); bitsPerSample:(#(1 )); samplesPerPixel:(1); bits:(ByteArray fromPackedString:'@@@@@@@@_<@? A<@C @D@@@@@@@@@@@a') ; yourself); yourself]
 ! !
 
 !MenuPanel::ScrollActivity class methodsFor:'instance creation'!
@@ -8165,7 +8165,7 @@
 !MenuPanel class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libwidg2/MenuPanel.st,v 1.481 2008-11-26 15:59:48 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libwidg2/MenuPanel.st,v 1.482 2008-12-07 22:27:34 cg Exp $'
 ! !
 
 MenuPanel initialize!