DebugView.st
changeset 528 a5ba1a3d0b45
parent 527 2faba0c6ab96
child 529 57a78164dae5
--- a/DebugView.st	Fri May 03 13:46:26 1996 +0200
+++ b/DebugView.st	Sat May 04 01:18:59 1996 +0200
@@ -433,12 +433,12 @@
 
     "
      drawableId is nil, if this is a new debugger. Then do a realize.
-     Otherwise, its probably better to do a rerealize, which shows the
+     Otherwise, its probably better to do a map, which shows the
      view at the previous position, without a need for the user to set the
      position again
     "
     drawableId notNil ifTrue:[
-        self rerealize
+        self map.
     ] ifFalse:[
         self realize.
     ].
@@ -489,7 +489,7 @@
         receiverInspector release.
         contextInspector release.
 
-        self unrealize.
+        self unmap.
         device flush.
 
         (exitAction == #abort) ifTrue:[
@@ -634,6 +634,7 @@
 
     "Created: 24.11.1995 / 19:52:54 / cg"
     "Modified: 1.3.1996 / 13:22:07 / cg"
+    "Modified: 3.5.1996 / 23:58:16 / stefan"
 !
 
 openOn:aProcess
@@ -2533,5 +2534,5 @@
 !DebugView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.78 1996-05-03 11:45:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/DebugView.st,v 1.79 1996-05-03 23:18:59 stefan Exp $'
 ! !