[squeak-dev] The Trunk: ToolBuilder-Kernel-cmm.52.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Oct 19 03:02:18 UTC 2011


Chris Muller uploaded a new version of ToolBuilder-Kernel to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Kernel-cmm.52.mcz

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

Name: ToolBuilder-Kernel-cmm.52
Author: cmm
Time: 18 October 2011, 8:12:42.168 pm
UUID: 54416a65-63c1-4ba4-959e-7f1f7db3aa62
Ancestors: ToolBuilder-Kernel-dtl.51

Fix ability to safely catch Notification so that, if #displayProgressAt:from:to:during:  is sent, will actually execute the during block.

=============== Diff against ToolBuilder-Kernel-dtl.51 ===============

Item was changed:
  ----- Method: ProgressInitiationException>>defaultAction (in category 'as yet unclassified') -----
  defaultAction
+ 	self resume!
- 	
- 	| result |
- 	result := UIManager default 
- 		displayProgress: progressTitle 
- 		at: aPoint 
- 		from: minVal 
- 		to: maxVal 
- 		during: workBlock.
- 	self resume: result!

Item was added:
+ ----- Method: ProgressInitiationException>>defaultResumeValue (in category 'as yet unclassified') -----
+ defaultResumeValue
+ 	^ UIManager default
+ 		displayProgress: progressTitle
+ 		at: aPoint
+ 		from: minVal
+ 		to: maxVal
+ 		during: workBlock!




More information about the Squeak-dev mailing list