CharacterEncoderImplementations__ISO10646_to_UTF16LE.st
changeset 19216 d1325e650883
parent 14171 d0b0a6918da7
child 19227 5e949760a4e8
child 19620 30541e739c68
--- a/CharacterEncoderImplementations__ISO10646_to_UTF16LE.st	Sun Feb 14 00:15:09 2016 +0100
+++ b/CharacterEncoderImplementations__ISO10646_to_UTF16LE.st	Sun Feb 14 00:15:22 2016 +0100
@@ -75,11 +75,11 @@
 !ISO10646_to_UTF16LE methodsFor:'private'!
 
 nextPutTwoByteValue:anInteger to:aStream
-    aStream nextPutShort:anInteger MSB:false
+    aStream nextPutInt16:anInteger MSB:false
 !
 
 nextTwoByteValueFrom:aStream
-    ^ aStream nextUnsignedShortMSB:false
+    ^ aStream nextUnsignedInt16MSB:false
 ! !
 
 !ISO10646_to_UTF16LE methodsFor:'queries'!
@@ -91,5 +91,6 @@
 !ISO10646_to_UTF16LE class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/CharacterEncoderImplementations__ISO10646_to_UTF16LE.st,v 1.3 2012-07-10 07:55:26 stefan Exp $'
+    ^ '$Header$'
 ! !
+