#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Mon, 09 May 2016 10:03:28 +0200
changeset 16497 ecf4458da1db
parent 16496 f394a324f190
child 16498 1101b39beeba
#OTHER by cg colorizeAllWith -> withColor
Tools__MethodList.st
--- a/Tools__MethodList.st	Mon May 09 10:03:13 2016 +0200
+++ b/Tools__MethodList.st	Mon May 09 10:03:28 2016 +0200
@@ -1651,7 +1651,7 @@
 
     aMethod isNil ifTrue:[
         "/ a non-existing (pseudo) method (such as required protocol)
-        ^ selector colorizeAllWith:Color red.
+        ^ selector withColor:Color red.
     ].
 
     showClassFirst ifTrue:[
@@ -1763,7 +1763,7 @@
     (showCategory and:[aMethod mclass notNil and:[aMethod mclass supportsMethodCategories]]) ifTrue:[
         cat := aMethod category.
         cat notNil ifTrue:[
-            s := s , ' {' , (cat "asText allItalic" colorizeAllWith:Color gray), '}'
+            s := s , ' {' , (cat "allItalic" withColor:Color gray), '}'
         ]
     ].