# HG changeset patch # User Claus Gittinger # Date 1370343574 -7200 # Node ID 27eb0659e5f0ae3e4e5c639ab45a5d2b9dd19c56 # Parent ceaec66469ffd3454bf5c0ec35410b963c9bc4aa class: Tools::ObjectModuleInformation changed: #updateModuleList diff -r ceaec66469ff -r 27eb0659e5f0 Tools__ObjectModuleInformation.st --- a/Tools__ObjectModuleInformation.st Tue Jun 04 12:31:15 2013 +0200 +++ b/Tools__ObjectModuleInformation.st Tue Jun 04 12:59:34 2013 +0200 @@ -1486,9 +1486,9 @@ showOthers ifTrue:[ |otherObjects otherObjectNames| - 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]. listOfModuleNames addAll:otherObjectNames. handles addAll:otherObjects.