AbstractLauncherApplication.st
changeset 4325 445335bde7ad
parent 4322 d9e0aac54af8
child 4328 a60a893cac97
--- a/AbstractLauncherApplication.st	Tue Nov 26 17:59:01 2002 +0100
+++ b/AbstractLauncherApplication.st	Tue Nov 26 18:17:19 2002 +0100
@@ -6980,7 +6980,7 @@
 
     self applList do:[ : applItem |
         (applItem isCategory not and:[applItem application notNil]) ifTrue:[
-            applItem application closeRequest.
+            applItem application close.
         ].
     ].
     ^ true
@@ -7550,7 +7550,7 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.237 2002-11-26 15:56:56 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.238 2002-11-26 17:17:19 penk Exp $'
 ! !
 
 AbstractLauncherApplication::SettingsDialog initialize!