The Trunk: Sound-topa.43.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-topa.43.mcz

commits-2
Tobias Pape uploaded a new version of Sound to project The Trunk:
http://source.squeak.org/trunk/Sound-topa.43.mcz

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

Name: Sound-topa.43
Author: topa
Time: 2 April 2015, 11:00:29.85 am
UUID: c1c2b948-6c86-4cf8-877d-1620433f558e
Ancestors: Sound-bf.42

Make SoundService registeredClasses class-based.

=============== Diff against Sound-bf.42 ===============

Item was changed:
  ----- Method: BaseSoundSystem class>>initialize (in category 'class initialization') -----
  initialize
+ SoundService register: self.!
- SoundService register: self new.!

Item was changed:
  ----- Method: BaseSoundSystem class>>unload (in category 'class initialization') -----
  unload
+ SoundService unregister: self!
- SoundService registeredClasses do: [:ss |
- (ss isKindOf: self) ifTrue: [SoundService unregister: ss]].!