[squeak-dev] The Trunk: ToolBuilder-Morphic-tpr.196.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Oct 3 00:09:25 UTC 2017


tim Rowledge uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-tpr.196.mcz

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

Name: ToolBuilder-Morphic-tpr.196
Author: tpr
Time: 2 October 2017, 5:09:16.231117 pm
UUID: 7036c368-757d-4824-ac4a-52ac133665f3
Ancestors: ToolBuilder-Morphic-nice.195

Rather than testing an argument for morphnicity, how about jaust making a morph do the right thing (ie nothing)?

Not entirely clear that the 'problem' can ever really arise, but I can't see any way to prove either case.

=============== Diff against ToolBuilder-Morphic-nice.195 ===============

Item was added:
+ ----- Method: Morph>>buildWith: (in category '*ToolBuilder-Morphic-opening') -----
+ buildWith: aToolBuilder
+ 	"A Morph is already built, so simply return myself"
+ 	^self!

Item was changed:
  ----- Method: MorphicToolBuilder>>open: (in category 'opening') -----
  open: anObject
  	"Build and open the object. Answer the widget opened."
+ 	
+ 	^ (self build: anObject) morphicOpenWith: self!
- 	| morph |
- 	morph := anObject isMorph ifTrue: [anObject] ifFalse: [self build: anObject].
- 	^ morph morphicOpenWith: self!



More information about the Squeak-dev mailing list