The Trunk: System-mt.812.mcz

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

The Trunk: System-mt.812.mcz

commits-2
Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.812.mcz

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

Name: System-mt.812
Author: mt
Time: 6 April 2016, 1:06:06.171625 pm
UUID: 3b380312-0a9d-e542-93d4-26edd4e87e24
Ancestors: System-mt.811

Rename to be consistent with ToolSet metaphor.

=============== Diff against System-mt.811 ===============

Item was removed:
- ----- Method: SoundService class>>play: (in category 'playing') -----
- play: sound
-
- self soundEnabled ifFalse: [^ self].
-
- self defaultOrNil ifNotNil: [:soundSystem |
- soundSystem playSound: sound].!

Item was added:
+ ----- Method: SoundService class>>playSound: (in category 'playing') -----
+ playSound: sound
+
+ self soundEnabled ifFalse: [^ self].
+
+ self defaultOrNil ifNotNil: [:soundSystem |
+ soundSystem playSound: sound].!