# HG changeset patch # User Claus Gittinger # Date 1404854511 -7200 # Node ID 209cc60527a4c6a046b3df5fd25208fb6e560f23 # Parent 6fe10704089b29c8869acc9fa88440a065991ef5 class: Tools::ProjectBuilderAssistantApplication changed: #updateApplicationComment (send #lightGray instead of #lightGrey) #updateComment (send #lightGray instead of #lightGrey) diff -r 6fe10704089b -r 209cc60527a4 Tools__ProjectBuilderAssistantApplication.st --- a/Tools__ProjectBuilderAssistantApplication.st Tue Jul 08 16:36:48 2014 +0200 +++ b/Tools__ProjectBuilderAssistantApplication.st Tue Jul 08 23:21:51 2014 +0200 @@ -3392,10 +3392,10 @@ self selectedApplicationIndexHolder value notNil ifTrue:[ comment := self commentFromClass:selectedApplication. comment isNil ifTrue:[ - comment := 'Application has no comment' allItalic colorizeAllWith:Color lightGrey. + comment := 'Application has no comment' allItalic colorizeAllWith:Color lightGray. ]. ] ifFalse:[ - comment := 'Please select an Application' allItalic colorizeAllWith:Color lightGrey. + comment := 'Please select an Application' allItalic colorizeAllWith:Color lightGray. ]. self selectedApplicationsComment value:comment. ! @@ -3406,10 +3406,10 @@ self selectedProjectIndexHolder value notNil ifTrue:[ comment := self commentFromClass:selectedProjectDefinition. comment isNil ifTrue:[ - comment := 'Project has no comment' allItalic colorizeAllWith:Color lightGrey. + comment := 'Project has no comment' allItalic colorizeAllWith:Color lightGray. ]. ] ifFalse:[ - comment := 'Please select a Project' allItalic colorizeAllWith:Color lightGrey. + comment := 'Please select a Project' allItalic colorizeAllWith:Color lightGray. ]. self selectedProjectsComment value:comment. !