# HG changeset patch # User Claus Gittinger # Date 1526217302 -7200 # Node ID 6609ee3ba1544543efc1cde5e3e1ac8043d0a4ab # Parent d124916e2e4d5818d6e843cc149f842ca0bd2c7c #REFACTORING by cg class: Tools::ProjectBuilderAssistantApplication changed: #doStopMake (send #withColor:on: instead of #colorizeAllWith:on:) #runBuildProcess: (send #withColor:on: instead of #colorizeAllWith:on:) diff -r d124916e2e4d -r 6609ee3ba154 Tools__ProjectBuilderAssistantApplication.st --- 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.