class: Tools::ProjectBuilderAssistantApplication
authorClaus Gittinger <cg@exept.de>
Tue, 08 Jul 2014 23:21:51 +0200
changeset 3139 209cc60527a4
parent 3138 6fe10704089b
child 3140 5a25f22cb054
class: Tools::ProjectBuilderAssistantApplication changed: #updateApplicationComment (send #lightGray instead of #lightGrey) #updateComment (send #lightGray instead of #lightGrey)
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.
 !