class: AbstractLauncherApplication
authorClaus Gittinger <cg@exept.de>
Fri, 28 Feb 2014 13:58:37 +0100
changeset 14075 710990d62d23
parent 14074 58c1a77c5fdb
child 14076 fbed27a15014
class: AbstractLauncherApplication changed: #startNewLauncher
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Fri Feb 28 13:49:53 2014 +0100
+++ b/AbstractLauncherApplication.st	Fri Feb 28 13:58:37 2014 +0100
@@ -1989,8 +1989,9 @@
     NewLauncher isNil ifTrue:[
         ^ self warn:'The NewLauncher is not available in this release.'
     ].
-    NewLauncher openAt:(self window origin)
-
+    Display withoutExitingOnLastCloseDo:[
+        NewLauncher openAt:(self window origin)
+    ].
 !
 
 startOldChangesBrowser
@@ -6946,14 +6947,14 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.448 2014-02-17 21:24:29 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.449 2014-02-28 12:58:37 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.448 2014-02-17 21:24:29 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.449 2014-02-28 12:58:37 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: AbstractLauncherApplication.st,v 1.448 2014-02-17 21:24:29 vrany Exp $'
+    ^ '$Id: AbstractLauncherApplication.st,v 1.449 2014-02-28 12:58:37 cg Exp $'
 ! !