do not send #closeRequest to nil.
authorClaus Gittinger <cg@exept.de>
Mon, 28 Jul 1997 10:36:04 +0200
changeset 244 b70597d2a39b
parent 243 ae6608b760bf
child 245 d48281345935
do not send #closeRequest to nil.
UISelectionPanel.st
--- a/UISelectionPanel.st	Mon Jul 28 10:34:25 1997 +0200
+++ b/UISelectionPanel.st	Mon Jul 28 10:36:04 1997 +0200
@@ -1411,11 +1411,13 @@
 
     (sav := masterApplication) notNil ifTrue:[
         masterApplication := nil.
-        masterApplication closeRequestFor:(self window).
+        sav closeRequestFor:(self window).
         masterApplication := sav.
     ] ifFalse:[
         super closeRequest.
     ]
+
+    "Modified: 28.7.1997 / 09:44:40 / cg"
 !
 
 openWindow