class: SoundStream
authorClaus Gittinger <cg@exept.de>
Tue, 10 Feb 2015 21:46:46 +0100
changeset 3482 a78459c5bfaf
parent 3481 b28077459fde
child 3483 014fa9bca2da
class: SoundStream changed: #initialize
SoundStream.st
--- a/SoundStream.st	Tue Feb 10 14:29:22 2015 +0100
+++ b/SoundStream.st	Tue Feb 10 21:46:46 2015 +0100
@@ -11,6 +11,8 @@
 "
 "{ Package: 'stx:libbasic2' }"
 
+"{ NameSpace: Smalltalk }"
+
 FileStream subclass:#SoundStream
 	instanceVariableNames:'sampleRate numberOfChannels bitsPerSample audioFormat handle1
 		handle2 bufferOffset bufferSize'
@@ -1067,6 +1069,8 @@
     "initialize for least common mode"
 
     super initialize.
+    "/ transparent
+    eolMode := nil.
     buffered := false.
     binary := true.
     bitsPerSample := self class defaultBitsPerSample.
@@ -2705,11 +2709,11 @@
 !SoundStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.80 2014-04-16 22:06:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.81 2015-02-10 20:46:46 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.80 2014-04-16 22:06:41 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SoundStream.st,v 1.81 2015-02-10 20:46:46 cg Exp $'
 ! !