David T. Lewis uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-dtl.50.mcz==================== Summary ====================
Name: ToolBuilder-Morphic-dtl.50
Author: dtl
Time: 12 February 2010, 10:01:44.628 pm
UUID: c27e3457-9f02-48bb-9e7d-0af526a0a5fc
Ancestors: ToolBuilder-Morphic-ar.49
Add MorphicUIManager>>request:initialAnswer:centerAt: to remove MVC dependency from MessageSet.
=============== Diff against ToolBuilder-Morphic-ar.49 ===============
Item was added:
+ ----- Method: MorphicUIManager>>request:initialAnswer:centerAt: (in category 'ui requests') -----
+ request: queryString initialAnswer: defaultAnswer centerAt: aPoint
+ "Create an instance of me whose question is queryString with the given
+ initial answer. Invoke it centered at the given point, and answer the
+ string the user accepts. Answer the empty string if the user cancels."
+ ^FillInTheBlankMorph request: queryString initialAnswer: defaultAnswer centerAt: aPoint!