SoundStream.st
changeset 1480 dbfc64f5af59
parent 1474 1ad407692b0b
child 1556 8a78c9a5a8f7
--- a/SoundStream.st	Wed Sep 29 13:30:56 2004 +0200
+++ b/SoundStream.st	Wed Sep 29 15:40:59 2004 +0200
@@ -2058,7 +2058,7 @@
     ^ super nextPutBytes:count from:anObject startingAt:start
 !
 
-openWithMode:aMode
+openWithMode:aMode attributes:attributeSpec
     |ok|
 
 %{
@@ -2383,7 +2383,7 @@
         
     ok isNil ifTrue:[
         "its a regular file open (i.e. /dev/audio) "
-        ^ super openWithMode:aMode.
+        ^ super openWithMode:aMode attributes:attributeSpec.
     ].
 
     Lobby register:self.
@@ -2662,7 +2662,7 @@
 !SoundStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.65 2004-09-06 23:26:40 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.66 2004-09-29 13:40:59 stefan Exp $'
 ! !
 
 SoundStream initialize!