InspectorView.st
changeset 593 6bc83313d7ff
parent 570 8575ebd6a0d2
child 613 048942111c7b
--- a/InspectorView.st	Thu May 30 09:19:25 1996 +0200
+++ b/InspectorView.st	Fri May 31 09:03:45 1996 +0200
@@ -264,13 +264,13 @@
     hasMore := false.
 !
 
-mapped
-    "delayed setup of lists till map-time - 
+realize
+    "delayed setup of lists till first map-time - 
      this makes startup of inspectors a bit faster"
 
     |o|
 
-    super mapped.
+    super realize.
     inspectedObject notNil ifTrue:[
         "
          kludge to trick inspect:, which ignores setting the
@@ -280,6 +280,8 @@
         inspectedObject := nil.
         self inspect:o
     ]
+
+    "Created: 30.5.1996 / 09:38:37 / cg"
 ! !
 
 !InspectorView methodsFor:'menu'!
@@ -796,5 +798,5 @@
 !InspectorView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.49 1996-05-26 13:22:33 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/InspectorView.st,v 1.50 1996-05-31 07:03:45 cg Exp $'
 ! !