#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Mon, 09 May 2016 10:08:38 +0200
changeset 3295 cfc396fb8c98
parent 3294 29f61473d4a5
child 3296 9a42d2d7ff05
#OTHER by cg colorizeAllWith -> withColor
Tools__ProjectBuilderAssistantApplication.st
--- a/Tools__ProjectBuilderAssistantApplication.st	Mon May 09 10:06:03 2016 +0200
+++ b/Tools__ProjectBuilderAssistantApplication.st	Mon May 09 10:08:38 2016 +0200
@@ -3372,10 +3372,10 @@
     self selectedApplicationIndexHolder value notNil ifTrue:[
         comment := self commentFromClass:selectedApplication.
         comment isNil ifTrue:[
-            comment := 'Application has no comment' allItalic colorizeAllWith:Color lightGray.
+            comment := 'Application has no comment' allItalic withColor:Color lightGray.
         ].
     ] ifFalse:[
-        comment := 'Please select an Application' allItalic colorizeAllWith:Color lightGray.
+        comment := 'Please select an Application' allItalic withColor:Color lightGray.
     ].
     self selectedApplicationsComment value:comment.
 !
@@ -3386,10 +3386,10 @@
     self selectedProjectIndexHolder value notNil ifTrue:[
         comment := self commentFromClass:selectedProjectDefinition.
         comment isNil ifTrue:[
-            comment := 'Project has no comment' allItalic colorizeAllWith:Color lightGray.
+            comment := 'Project has no comment' allItalic withColor:Color lightGray.
         ].
     ] ifFalse:[
-        comment := 'Please select a Project' allItalic colorizeAllWith:Color lightGray.
+        comment := 'Please select a Project' allItalic withColor:Color lightGray.
     ].
     self selectedProjectsComment value:comment.
 !