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

commits at source.squeak.org commits at source.squeak.org
Wed Oct 5 08:50:42 UTC 2011


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

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

Name: ST80-ul.137
Author: ul
Time: 4 October 2011, 8:19:05.394 pm
UUID: 7aaddc8c-1a28-274f-97bb-acdfe76b5307
Ancestors: ST80-nice.136

- use #becomeForward: instead of #become:

=============== Diff against ST80-nice.136 ===============

Item was changed:
  ----- Method: FormHolderView>>cancel (in category 'menu messages') -----
  cancel 
  	"Refer to the comment in FormView|cancel."
  
+ 	displayedForm becomeForward: model deepCopy.
- 	displayedForm become: model deepCopy.
  	displayedForm changed: self.
  	self display!

Item was changed:
  ----- Method: StandardSystemController>>toggleTwoTone (in category 'menu messages') -----
  toggleTwoTone
  	(view isMemberOf: StandardSystemView) ifTrue:
+ 		[^ view becomeForward: (view as: ColorSystemView)].
- 		[^ view become: (view as: ColorSystemView)].
  	(view isMemberOf: ColorSystemView) ifTrue:
+ 		[^ view becomeForward: (view as: StandardSystemView)].
- 		[^ view become: (view as: StandardSystemView)].
  !




More information about the Squeak-dev mailing list