[squeak-dev] The Trunk: ST80-mt.241.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 25 09:23:51 UTC 2019


Marcel Taeumel uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-mt.241.mcz

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

Name: ST80-mt.241
Author: mt
Time: 25 September 2019, 11:23:50.807838 am
UUID: f846aea5-4fcf-304c-b51e-8d99299a2662
Ancestors: ST80-mt.240

Fixes #subProjects to not only rely on project viewers.

=============== Diff against ST80-mt.240 ===============

Item was changed:
  ----- Method: MVCProject>>subProjects (in category 'utilities') -----
  subProjects
  	"Answer a list of all the subprojects  of the receiver. "
  	
+ 	^ (super subProjects, ((self world controllersSatisfying: [:m | m model isKindOf: Project]) 
+ 		collect: [:controller | controller model])) asSet asArray!
- 	^ (self world controllersSatisfying: [:m | m model isKindOf: Project]) 
- 		collect: [:controller | controller model]!



More information about the Squeak-dev mailing list