The Trunk: Tools-ct.1358.mcz

[email protected] Fri, 19 Jun 2026 18:49:31 0000
Newsgroups gmane.comp.lang.smalltalk.squeak.general
Message-ID <[email protected]>
Christoph Thiede uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ct.1358.mcz

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

Name: Tools-ct.1358
Author: ct
Time: 19 June 2026, 8:49:30.89634 pm
UUID: 94540d10-44d5-4bab-8382-22599ad8caa4
Ancestors: Tools-ct.1357

Fixes "browse it here" (cmd-shift-B) in tree browsers.

=============== Diff against Tools-ct.1357 ===============

Item was changed:
  ----- Method: Browser>>couldBrowseAnyClass (in category 'accessing') -----
  couldBrowseAnyClass
  	"Answer whether the receiver is equipped to browse any class. This is in support of the system-brower feature that allows the browser to be redirected at the selected class name.  This implementation is clearly ugly, but the feature it enables is handsome enough.  3/1/96 sw"
  
  	^self dependents
+ 		anySatisfy: [:d | d knownName = #systemCategoryList
+ 			"NB: #knownName is not specific in MVC"
+ 			or: [(d respondsTo: #getListSelector)
+ 				and: [d getListSelector == #systemCategoryList]]]!
- 		anySatisfy: [:d | (d respondsTo: #getListSelector)
- 				and: [d getListSelector == #systemCategoryList]]!

Squeak-dev mailing list -- [email protected]
To unsubscribe send an email to [email protected]