# HG changeset patch # User Claus Gittinger # Date 870078964 -7200 # Node ID b70597d2a39b389a6fb9a37d908935b13dab4446 # Parent ae6608b760bfe88b15c8fd517354b2a95128f3ce do not send #closeRequest to nil. diff -r ae6608b760bf -r b70597d2a39b 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