use string-key in constantNamed:-icon caching
authorClaus Gittinger <cg@exept.de>
Wed, 06 Feb 2008 10:32:26 +0100
changeset 7967 2560906ca552
parent 7966 65ff95edb634
child 7968 1acda3f58974
use string-key in constantNamed:-icon caching
CodeGeneratorTool.st
--- a/CodeGeneratorTool.st	Tue Feb 05 16:34:10 2008 +0100
+++ b/CodeGeneratorTool.st	Wed Feb 06 10:32:26 2008 +0100
@@ -1669,7 +1669,7 @@
             '    <resource: #image>',
             '\\',
             '    ^Icon\') withCRs, 
-            '        constantNamed:#''', imageKey, '''\' withCRs,
+            '        constantNamed:''', imageKey, '''\' withCRs,
             '        ifAbsentPut:[', imageStoreStream contents, ']')
        classified: category.
 !
@@ -2102,5 +2102,5 @@
 !CodeGeneratorTool class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.53 2007-02-05 09:53:04 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.54 2008-02-06 09:32:26 cg Exp $'
 ! !