#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Wed, 29 Nov 2017 11:12:11 +0100
changeset 17815 cacf624e47f3
parent 17814 1f32591535f0
child 17816 ee2acbd6beab
#BUGFIX by stefan class: Tools::Inspector2::NavigationState changed: #displayOn: (send #displayString instead of #printString) Fix for debugging ProtoObjects
Tools__Inspector2.st
--- a/Tools__Inspector2.st	Wed Nov 29 10:06:54 2017 +0100
+++ b/Tools__Inspector2.st	Wed Nov 29 11:12:11 2017 +0100
@@ -1523,7 +1523,7 @@
         Error handle:[:ex |
             displayString := '*ERROR*'
         ] do:[
-            displayString := theObject printString contractAtEndTo:15.
+            displayString := theObject displayString contractAtEndTo:15.
         ].
         displayString := displayString , ' [', (theObject class name ? '???')  , ']'
     ].
@@ -1532,6 +1532,7 @@
     "Created: / 21-02-2008 / 19:53:07 / janfrog"
     "Modified: / 13-06-2012 / 14:40:34 / cg"
     "Modified (comment): / 22-02-2017 / 16:48:59 / cg"
+    "Modified: / 28-11-2017 / 19:12:56 / stefan"
 ! !
 
 !Inspector2::NavigationState methodsFor:'initialization'!