The Trunk: SMLoader-ar.59.mcz

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

The Trunk: SMLoader-ar.59.mcz

commits-2
Andreas Raab uploaded a new version of SMLoader to project The Trunk:
http://source.squeak.org/trunk/SMLoader-ar.59.mcz

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

Name: SMLoader-ar.59
Author: ar
Time: 10 May 2010, 8:59:15.092 pm
UUID: 90778d86-19b0-404f-9b8c-7e68eec77b91
Ancestors: SMLoader-gk.58

Suppress SqueakMap's insatiable appetite to ask the user whether or not to update the map from the 'net when recreating flaps or similar non-Squeakmap related activities.

=============== Diff against SMLoader-gk.58 ===============

Item was changed:
  ----- Method: SMLoader classSide>>prototypicalToolWindow (in category 'new-morph participation') -----
  prototypicalToolWindow
+ "Do not update when creating a prototype window (used by flaps etc)"
+
+ ^[self new createWindow; applyModelExtent; yourself]
+ valueSupplyingAnswers:{ {'*map on disk*'. false}}!
- ^self new createWindow; applyModelExtent; yourself!

Item was changed:
  ----- Method: SMLoaderPlus classSide>>prototypicalToolWindow (in category 'new-morph participation') -----
  prototypicalToolWindow
+ "Do not update when creating a prototype window (used by flaps etc)"
+
+ ^[(ToolBuilder open: self new) applyModelExtent; yourself]
+ valueSupplyingAnswers:{ {'*map on disk*'. false}}!
- ^ ToolBuilder open: self new; applyModelExtent; yourself!