The Trunk: Sound-nice.14.mcz

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

The Trunk: Sound-nice.14.mcz

commits-2
Nicolas Cellier uploaded a new version of Sound to project The Trunk:
http://source.squeak.org/trunk/Sound-nice.14.mcz

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

Name: Sound-nice.14
Author: nice
Time: 17 April 2010, 2:04:10.503 am
UUID: 679683aa-e90d-e541-94e1-bb025a18c3c1
Ancestors: Sound-nice.13

Correct missing yourself after #add:

=============== Diff against Sound-nice.13 ===============

Item was changed:
  ----- Method: AbstractSound>>+ (in category 'composition') -----
  + aSound
  "Return the mix of the receiver and the argument sound."
 
+ ^(MixedSound new)
- ^ MixedSound new
  add: self;
+ add: aSound;
+ yourself
- add: aSound
  !

Item was changed:
  ----- Method: MixedSound>>+ (in category 'composition') -----
  + aSound
  "Return the mix of the receiver and the argument sound."
 
+ self add: aSound
- ^ self add: aSound
  !