no need for #asText to emphasize a string
authorClaus Gittinger <cg@exept.de>
Thu, 22 Oct 2009 14:40:39 +0200
changeset 9033 abeca4d8f0f0
parent 9032 7373bccbcd75
child 9034 681fbf933dcf
no need for #asText to emphasize a string
ContextInspectorView.st
--- a/ContextInspectorView.st	Thu Oct 22 14:40:18 2009 +0200
+++ b/ContextInspectorView.st	Thu Oct 22 14:40:39 2009 +0200
@@ -470,7 +470,7 @@
 
 fieldList
     names size == 0 ifTrue:[^ names].
-    ^ (Array with:('-', 'all local vars' asText allItalic)) , names
+    ^ (Array with:('-', 'all local vars' allItalic)) , names
 !
 
 hasSelfEntry
@@ -650,5 +650,9 @@
 !ContextInspectorView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.70 2009-09-14 17:48:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.71 2009-10-22 12:40:39 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libtool/ContextInspectorView.st,v 1.71 2009-10-22 12:40:39 cg Exp $'
 ! !