class: Tools::ViewTreeInspectorApplication
authorClaus Gittinger <cg@exept.de>
Thu, 29 May 2014 11:50:18 +0200
changeset 3123 5bdc0a26498c
parent 3122 8b3c2b6d3fb2
child 3124 1973e28a2c75
class: Tools::ViewTreeInspectorApplication changed: #path
Tools__ViewTreeApplication.st
--- a/Tools__ViewTreeApplication.st	Fri May 23 11:37:27 2014 +0200
+++ b/Tools__ViewTreeApplication.st	Thu May 29 11:50:18 2014 +0200
@@ -981,7 +981,10 @@
     <resource: #uiAspect>
 
     path isNil ifTrue:[
-        path := PluggableAdaptor on: self model getter:[ :model | model path ]
+        path := PluggableAdaptor 
+                    on: self model 
+                    getter:[ :model | model path ]
+                    setter:[ :model :newValue |  ]
     ].
     ^ path.
 
@@ -3149,8 +3152,8 @@
     views removeLast.
     ^ String streamContents:[ :s|
         views reverseDo:[:each |
-            s nextPutAll:' / '.
-            s nextPutAll: each name asString storeString.
+            s nextPutAll:'/'.
+            s nextPutAll: each name asString "storeString".
         ].
     ]