[Pkg] The Trunk: Morphic-mt.1541.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 25 09:24:31 UTC 2019


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

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

Name: Morphic-mt.1541
Author: mt
Time: 25 September 2019, 11:24:23.707838 am
UUID: 077a67ab-387d-a449-b28f-518ba8f9eda4
Ancestors: Morphic-mt.1540

Fixes #subProjects to not only rely on project viewers.

=============== Diff against Morphic-mt.1540 ===============

Item was changed:
  ----- Method: MorphicProject>>subProjects (in category 'subprojects') -----
  subProjects
  	"Answer a list of all the subprojects  of the receiver. "
  	
+ 	^ (super subProjects, (world submorphs 
- 	self flag: #fix. "mt: Collect other projects that have this as parent. See Project >> #allProjects"
- 	^world submorphs 
  		select: [:m | (m isSystemWindow) and: [m model isKindOf: Project]]
+ 		thenCollect: [:m | m model])) asSet asArray.!
- 		thenCollect: [:m | m model].!



More information about the Packages mailing list