Tools__ProjectBuilderAssistantApplication.st
changeset 3558 6609ee3ba154
parent 3520 b139ae538098
child 3559 ec4d0d1605c5
--- a/Tools__ProjectBuilderAssistantApplication.st	Sat May 12 14:25:16 2018 +0200
+++ b/Tools__ProjectBuilderAssistantApplication.st	Sun May 13 15:15:02 2018 +0200
@@ -2262,7 +2262,7 @@
         ].
         makeOutputWindow endEntry.
         makeOutputWindow cr.
-        makeOutputWindow nextPutLine:('Make Canceled' colorizeAllWith:Color white on:Color red).
+        makeOutputWindow nextPutLine:('Make Canceled' withColor:Color white on:Color red).
         makeOutputWindow endEntry.
     ].
 
@@ -2308,7 +2308,7 @@
         ex messageText notNil ifTrue:[
             makeOutputWindow endEntry.
             makeOutputWindow cr.
-            makeOutputWindow nextPutLine:(ex messageText colorizeAllWith:Color white on:Color blue).
+            makeOutputWindow nextPutLine:(ex messageText withColor:Color white on:Color blue).
             makeOutputWindow endEntry.
         ].
         ex proceed.
@@ -2323,7 +2323,7 @@
 
             makeOutputWindow endEntry.
             makeOutputWindow cr.
-            makeOutputWindow nextPutLine:(ex description colorizeAllWith:Color white on:Color red).
+            makeOutputWindow nextPutLine:(ex description withColor:Color white on:Color red).
             makeOutputWindow endEntry.
             Debugging == true ifTrue:[ ex reject ].
             ex proceed.