class: AbstractLauncherApplication
authorClaus Gittinger <cg@exept.de>
Tue, 04 Jun 2013 12:09:56 +0200
changeset 12823 50a3b78ef6e7
parent 12822 cda365756f93
child 12824 2cdd97a7d9d3
class: AbstractLauncherApplication
AbstractLauncherApplication.st
--- a/AbstractLauncherApplication.st	Tue Jun 04 12:00:30 2013 +0200
+++ b/AbstractLauncherApplication.st	Tue Jun 04 12:09:56 2013 +0200
@@ -5474,9 +5474,9 @@
 
             showOthers value ifTrue:[
                 allObjects := ObjectFileLoader loadedObjectHandles.
-                otherObjects := (allObjects select:[:h | (h isFunctionObjectHandle
+                otherObjects := (allObjects reject:[:h | (h isFunctionObjectHandle
                                                          or:[h isMethodHandle
-                                                         or:[h isClassLibHandle]]) not]) asArray.
+                                                         or:[h isClassLibHandle]])]) asArray.
                 otherObjectNames := otherObjects collect:[:entry | entry pathName].
                 l := l , otherObjectNames.
                 handles := handles , otherObjects.
@@ -7022,14 +7022,14 @@
 !AbstractLauncherApplication class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.430 2013-06-04 10:09:56 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/AbstractLauncherApplication.st,v 1.430 2013-06-04 10:09:56 cg Exp $'
 !
 
 version_SVN
-    ^ '$Id: AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $'
+    ^ '$Id: AbstractLauncherApplication.st,v 1.430 2013-06-04 10:09:56 cg Exp $'
 ! !