SimpleView.st
changeset 1109 3b9d9cc6e639
parent 1101 ffeb697dd9e0
child 1113 6c1370b4bda4
--- a/SimpleView.st	Thu Nov 07 12:12:15 1996 +0100
+++ b/SimpleView.st	Thu Nov 07 16:47:09 1996 +0100
@@ -5421,6 +5421,14 @@
     "Created: 8.5.1996 / 09:33:06 / cg"
 !
 
+rerealize
+    "rerealize at old position in (a possibly different) windowGroup."
+
+    self rerealizeInGroup:windowGroup
+
+    "Created: 7.11.1996 / 16:27:09 / cg"
+!
+
 rerealizeInGroup:aWindowGroup
     "rerealize at old position in (a possibly different) windowGroup."
 
@@ -5435,10 +5443,11 @@
             windowGroup := aWindowGroup.
             aWindowGroup addTopView:self.
         ].
-        self map.
+        self remap.
     ]
 
     "Modified: 3.5.1996 / 23:59:30 / stefan"
+    "Modified: 7.11.1996 / 16:28:16 / cg"
 !
 
 rerealizeWithAllSubViews
@@ -6463,6 +6472,6 @@
 !SimpleView class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.145 1996-11-01 16:32:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/SimpleView.st,v 1.146 1996-11-07 15:47:09 cg Exp $'
 ! !
 SimpleView initialize!