InspectorView.st
changeset 11763 f3f1b32db84b
parent 11749 213908da088d
child 11768 40f68c94ef97
--- a/InspectorView.st	Tue Aug 21 21:04:10 2012 +0200
+++ b/InspectorView.st	Tue Aug 21 21:05:28 2012 +0200
@@ -2713,7 +2713,7 @@
 
     entry := listView at:lineNr.
     entry isNil ifTrue:[^ entry].
-    ^ entry string
+    ^ entry perform:#string ifNotUnderstood:[ entry printString ].
 
     "Created: / 16-05-2012 / 17:53:39 / cg"
 !
@@ -3307,9 +3307,9 @@
 !InspectorView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.276 2012-08-14 08:53:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.277 2012-08-21 19:05:28 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.276 2012-08-14 08:53:52 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.277 2012-08-21 19:05:28 cg Exp $'
 ! !