The Trunk: ToolBuilder-SUnit-ul.13.mcz

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

The Trunk: ToolBuilder-SUnit-ul.13.mcz

commits-2
Levente Uzonyi uploaded a new version of ToolBuilder-SUnit to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-SUnit-ul.13.mcz

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

Name: ToolBuilder-SUnit-ul.13
Author: ul
Time: 12 December 2009, 2:52:34 am
UUID: 302f03b6-69f2-9b43-93a8-37bd20274ac3
Ancestors: ToolBuilder-SUnit-cwp.12

- replace sends of #ifNotNilDo: to #ifNotNil:, #ifNil:ifNotNilDo: to #ifNil:ifNotNil:, #ifNotNilDo:ifNil: to #ifNotNil:ifNil:

=============== Diff against ToolBuilder-SUnit-cwp.12 ===============

Item was changed:
  ----- Method: CompositeStub>>widgetNamed: (in category 'accessing') -----
  widgetNamed: aString
  self name = aString
  ifTrue: [^ self]
+ ifFalse: [children do: [:ea | (ea widgetNamed: aString) ifNotNil: [:w | ^ w]]].
- ifFalse: [children do: [:ea | (ea widgetNamed: aString) ifNotNilDo: [:w | ^ w]]].
  ^ nil!