[squeak-dev] The Trunk: ToolBuilder-Morphic-ar.36.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Sep 6 23:18:04 UTC 2009


Andreas Raab uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-ar.36.mcz

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

Name: ToolBuilder-Morphic-ar.36
Author: ar
Time: 6 September 2009, 4:17:57 am
UUID: ff25abe1-7597-cf42-b7d6-c53caed161c5
Ancestors: ToolBuilder-Morphic-ar.35

For widgets that have an explicit id/name associated with them, set the external name of the morph to the same name. This allows finding such a morph in its top-level window via #submorphNamed: etc.

=============== Diff against ToolBuilder-Morphic-ar.35 ===============

Item was changed:
  ----- Method: MorphicToolBuilder>>register:id: (in category 'private') -----
  register: widget id: id
  	id ifNil:[^self].
  	widgets ifNil:[widgets := Dictionary new].
+ 	widgets at: id put: widget.
+ 	widget setNameTo: id.!
- 	widgets at: id put: widget.!




More information about the Squeak-dev mailing list