The Trunk: Morphic-mt.1541.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-mt.1541.mcz

commits-2
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].!