*** empty log message ***
authorpenk
Wed, 27 Nov 2002 11:02:33 +0100
changeset 4328 a60a893cac97
parent 4327 076dfc82d0ed
child 4329 c585323be4a2
*** empty log message ***
AbstractLauncherApplication.st
AbstractSettingsApplication.st
--- a/AbstractLauncherApplication.st	Wed Nov 27 10:51:07 2002 +0100
+++ b/AbstractLauncherApplication.st	Wed Nov 27 11:02:33 2002 +0100
@@ -7023,9 +7023,10 @@
 
     self applList do:[ : applItem |
         (applItem isCategory not and:[applItem application notNil]) ifTrue:[
-            applItem application loadRequest 
+            ^ applItem application loadRequest 
         ].
     ].
+    ^ true
 !
 
 sendSaveRequestToAll
@@ -7263,8 +7264,6 @@
 
     resources := self class owningClass classResources.
 
-    self sendLoadRequestToAll ifFalse:[^ self].
-
     fileName := Dialog 
         requestFileName:(resources string:'Save settings in:') 
         default:'settings.stx'
@@ -7550,7 +7549,7 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.238 2002-11-26 17:17:19 penk Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.239 2002-11-27 10:02:33 penk Exp $'
 ! !
 
 AbstractLauncherApplication::SettingsDialog initialize!
--- a/AbstractSettingsApplication.st	Wed Nov 27 10:51:07 2002 +0100
+++ b/AbstractSettingsApplication.st	Wed Nov 27 11:02:33 2002 +0100
@@ -6919,7 +6919,7 @@
         commandList isNil ifTrue:[
             commandList := #('lpr' 
                              'lp' 
-                            ).
+                            ) asOrderedCollection.
         ].
         (commandList includes:self printCommand value) not ifTrue:[
             commandList add:self printCommand value.
@@ -9113,5 +9113,5 @@
 !AbstractSettingsApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.10 2002-11-27 09:51:07 penk Exp $'
-! !
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractSettingsApplication.st,v 1.11 2002-11-27 10:02:18 penk Exp $'
+! !