David T. Lewis uploaded a new version of ToolBuilder-MVC to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-MVC-dtl.18.mcz==================== Summary ====================
Name: ToolBuilder-MVC-dtl.18
Author: dtl
Time: 12 February 2010, 10:00:45.482 pm
UUID: 7ff16d9b-a21d-4c28-bf03-9b9db05c2aa5
Ancestors: ToolBuilder-MVC-ar.17
Add MVCUIManager>>request:initialAnswer:centerAt: to remove MVC dependency from MessageSet.
=============== Diff against ToolBuilder-MVC-ar.17 ===============
Item was added:
+ ----- Method: MVCUIManager>>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."
+ ^ FillInTheBlank request: queryString initialAnswer: defaultAnswer centerAt: aPoint !