# HG changeset patch # User Claus Gittinger # Date 1462781318 -7200 # Node ID cfc396fb8c98a514a0b3b1f4d0e521da806c3ef6 # Parent 29f61473d4a5352e94363b547ac45a93010fe83b #OTHER by cg colorizeAllWith -> withColor diff -r 29f61473d4a5 -r cfc396fb8c98 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. !