[squeak-dev] The Trunk: ST80-ul.129.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jun 18 08:56:38 UTC 2011


Levente Uzonyi uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-ul.129.mcz

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

Name: ST80-ul.129
Author: ul
Time: 17 June 2011, 4:43:34.799 pm
UUID: 8b67c553-78b6-0d45-919f-8d30e75e4443
Ancestors: ST80-nice.128

- Use #displayProgressFrom:to:during: instead of #displayProgressAt:from:to:during:.

=============== Diff against ST80-nice.128 ===============

Item was changed:
  ----- Method: MVCProject>>do:withProgressInfoOn:label: (in category 'utilities') -----
  do: aBlock withProgressInfoOn: aMorphOrNil label: aString
  	"Evaluate aBlock with a labeled progress bar. Use a simple progress
  	bar set to 50% progress. In Morphic, progress is displayed with a
  	ComplexProgressIndicator."
  
  	aString
+ 		displayProgressFrom: 0 to: 2
- 		displayProgressAt: Sensor cursorPoint
- 		from: 0 to: 2
  		during: [:bar |  bar value: 1.
  				aBlock value]
  
  !




More information about the Squeak-dev mailing list