#OTHER by exept cvs_MAIN
authorClaus Gittinger <cg@exept.de>
Fri, 30 Aug 2019 10:45:00 +0200
branchcvs_MAIN
changeset 3945 40fd06fe63d7
parent 3944 d9e46e7216ac
child 3946 a5806798c773
#OTHER by exept use allRed and allGray
tools/JavaCodeBundleEditor.st
--- a/tools/JavaCodeBundleEditor.st	Fri Aug 30 10:41:51 2019 +0200
+++ b/tools/JavaCodeBundleEditor.st	Fri Aug 30 10:45:00 2019 +0200
@@ -635,11 +635,11 @@
         label := library name.          
         warnings isEmpty ifTrue:[ 
             library sources isNil ifTrue:[ 
-                label := label , ((' (', (resources string: 'no sources') , ')') withColor: Color gray)
+                label := label , ((' (', (resources string: 'no sources') , ')') allGray)
             ].
         ] ifFalse:[ 
             label := label , (' (', (warnings size == 1 ifTrue:[resources string: '1 warning'] ifFalse:[resources string: '%1 warnings' with: warnings size]) , ')').
-            label := label withColor: Color red.
+            label := label allRed.
         ].
     ].
     ^ label