Marcel Taeumel uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-mt.262.mcz==================== Summary ====================
Name: ST80-mt.262
Author: mt
Time: 14 October 2020, 2:06:13.409569 pm
UUID: 06f67fe3-d639-fe4a-a44e-41733bf3b7fd
Ancestors: ST80-mt.261
Rename #doWithIndex: to #withIndexDo:. See
http://forum.world.st/The-Inbox-60Deprecated-ct-80-mcz-td5120706.html=============== Diff against ST80-mt.261 ===============
Item was changed:
----- Method: PluggableTest>>artistKeystroke: (in category 'artist pane') -----
artistKeystroke: aCharacter
+ self artistList withIndexDo: [:artist :i |
- self artistList doWithIndex: [:artist :i |
(artist first asLowercase = aCharacter asLowercase) ifTrue: [
self artist: i]].
!
Item was changed:
----- Method: PluggableTest>>musicTypeKeystroke: (in category 'music type pane') -----
musicTypeKeystroke: aCharacter
+ musicTypeList withIndexDo: [:type :i |
- musicTypeList doWithIndex: [:type :i |
(type first asLowercase = aCharacter asLowercase)
ifTrue: [self musicType: i]].
!