#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Mon, 09 May 2016 10:08:36 +0200
changeset 4030 e0acccdb6a49
parent 4029 9db79c8ec9c9
child 4031 4460efd0c484
child 4032 26e8727160cb
#OTHER by cg colorizeAllWith -> withColor
AbstractSourceCodeManager.st
--- a/AbstractSourceCodeManager.st	Mon May 09 10:07:43 2016 +0200
+++ b/AbstractSourceCodeManager.st	Mon May 09 10:08:36 2016 +0200
@@ -3785,7 +3785,7 @@
         ].
         logMsg asCollectionOfLines do:[:eachLine |
             aStream tab.
-            aStream nextPutAllText:(eachLine colorizeAllWith:color); cr.
+            aStream nextPutAllText:(eachLine withColor:color); cr.
         ].
     ].
 
@@ -3969,14 +3969,14 @@
     ^ self manager isNil 
         ifFalse:[ managerTypeName ]
         ifTrue:
-            [ (managerTypeName , ' (unavailable)') asText colorizeAllWith:Color gray ].
+            [ (managerTypeName , ' (unavailable)') withColor:Color gray ].
 
     "Created: / 09-07-2011 / 14:05:03 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 !
 
 displayStringForPackage
     ^ self manager isNil 
-        ifTrue:[ package asText colorizeAllWith:Color gray ]
+        ifTrue:[ package withColor:Color gray ]
         ifFalse:[ package ]
 
     "Created: / 09-07-2011 / 14:05:34 / Jan Vrany <jan.vrany@fit.cvut.cz>"