class: SimpleView
authorClaus Gittinger <cg@exept.de>
Thu, 16 Feb 2017 19:20:46 +0100
changeset 17415 207171d9b430
parent 17414 809f41b5b48c
child 17416 ccd3335a762a
class: SimpleView changed: #inspectorExtraAttributes
extensions.st
--- a/extensions.st	Thu Feb 16 11:12:28 2017 +0100
+++ b/extensions.st	Thu Feb 16 19:20:46 2017 +0100
@@ -2188,13 +2188,15 @@
 
 inspectorExtraAttributes
     ^ super inspectorExtraAttributes
-        add:'-windowGroup' -> [ self instVarNamed:#windowGroup ];
-        add:'-sensor' -> [ self instVarNamed:#sensor ];
-        add:'-parent' -> [ self instVarNamed:#container ];
+        add:'-windowGroup' -> [ self windowGroup ];
+        add:'-sensor' -> [ self sensor ];
+        add:'-parent' -> [ self container ];
         add:'-hidden' -> [ self isHiddenOnRealize ];
         add:'-enabled' -> [ self enabled ];
         
         yourself
+
+    "Modified: / 16-02-2017 / 18:34:31 / cg"
 ! !
 
 !SimpleView methodsFor:'testing'!