[Pkg] The Trunk: Tools-fbs.306.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Apr 20 23:04:44 UTC 2011


Levente Uzonyi uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-fbs.306.mcz

==================== Summary ====================

Name: Tools-fbs.306
Author: fbs
Time: 5 March 2011, 10:31:43.816 pm
UUID: 7371f8cf-b674-7b49-8ecf-f5977a7f37ca
Ancestors: Tools-fbs.305

Don't reference classListIndex.

=============== Diff against Tools-fbs.305 ===============

Item was changed:
  ----- Method: HierarchyBrowser>>selectedClassName (in category 'initialization') -----
  selectedClassName
  	"Answer the name of the class currently selected.   di
  	  bug fix for the case where name cannot be found -- return nil rather than halt"
  
  	| aName |
+ 	aName := super selectedClassName.
+ 	aName ifNil: [ ^ nil ].
- 	aName := self classList at: classListIndex ifAbsent: [^ nil].
  	^ (aName copyWithout: Character space) asSymbol!



More information about the Packages mailing list