diff -r 0ce340e972c4 -r c9b815af5777 AbstractLauncherApplication.st --- a/AbstractLauncherApplication.st Tue Jun 04 16:21:31 2013 +0100 +++ b/AbstractLauncherApplication.st Wed Jun 12 16:47:06 2013 +0100 @@ -2324,14 +2324,11 @@ startWindowTreeViewForAll "open a windowTree on all views in the system" - |v| - WindowTreeView isNil ifTrue:[ ^ self warn:'The WindowTreeView is not available in this release.' ]. WindowTreeView openOnAll - ! viewBrowse @@ -5474,9 +5471,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,11 +7019,11 @@ !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.431 2013-06-05 13:22:08 stefan 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.431 2013-06-05 13:22:08 stefan Exp $' ! version_HG @@ -7035,6 +7032,6 @@ ! version_SVN - ^ '$Id: AbstractLauncherApplication.st,v 1.429 2013-05-14 10:27:57 cg Exp $' + ^ '$Id: AbstractLauncherApplication.st,v 1.431 2013-06-05 13:22:08 stefan Exp $' ! !