#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Mon, 09 May 2016 10:04:37 +0200
changeset 16506 f8e9cf3bc8a7
parent 16505 79d84bdff1d8
child 16507 a00cbba77d87
#REFACTORING by cg class: AbstractLauncherApplication colorizeAllWith -> withColor
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Mon May 09 10:04:24 2016 +0200
+++ b/AbstractLauncherApplication.st	Mon May 09 10:04:37 2016 +0200
@@ -7261,7 +7261,7 @@
 
     (MCRepositoryGroup isNil or:[MCRepositoryGroup isLoaded not]) ifTrue:[
         monticelloRoot icon:greyFolderIcon.
-        monticelloRoot label:monticelloLabel, (' (Monticello Support not Loaded)' asText colorizeAllWith:Color grey).
+        monticelloRoot label:monticelloLabel, (' (Monticello Support not Loaded)' withColor:Color grey).
     ] ifFalse:[
         monticelloRoot icon:folderIcon.
         monticelloRoot label:monticelloLabel.
@@ -7869,7 +7869,7 @@
 
                 isAlreadyLoaded := false.
                 Error handle:[:ex |
-                    item label:(item label , (' ERROR - please rebuild!!' colorizeAllWith:Color red)).
+                    item label:(item label , (' ERROR - please rebuild!!' withColor:Color red)).
                 ] do:[    
                     isAlreadyLoaded := 
                         (defClass := ProjectDefinition definitionClassForPackage:packageID) notNil