#OTHER by mawalch
authormawalch
Mon, 11 Jul 2016 14:58:25 +0200
changeset 3997 856722248c9f
parent 3995 f0615c47cf78
child 3998 449f65604169
child 3999 86895a4f348a
#OTHER by mawalch class: Workflow::NamedElementsLibrary changed: #workflowFileSaveEncodingVector_V1 (send #elementDescriptorForNonNilInstanceVariables instead of #encodingVectorForNonNilInstanceVariables) Move away from deprecated API (Character asciiValue -> Character codePoint)
EpsonFX1PrinterStream.st
--- a/EpsonFX1PrinterStream.st	Thu Jul 07 20:22:14 2016 +0200
+++ b/EpsonFX1PrinterStream.st	Mon Jul 11 14:58:25 2016 +0200
@@ -9,8 +9,9 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
+"{ Package: 'stx:libbasic2' }"
 
-"{ Package: 'stx:libbasic2' }"
+"{ NameSpace: Smalltalk }"
 
 PrinterStream subclass:#EpsonFX1PrinterStream
 	instanceVariableNames:''
@@ -104,7 +105,7 @@
 
     |ascii|
 
-    ascii := aCharacter asciiValue.
+    ascii := aCharacter codePoint.
     (ascii < 128) ifTrue:[
         ^ stream nextPut:aCharacter
     ].
@@ -255,7 +256,8 @@
 !EpsonFX1PrinterStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/EpsonFX1PrinterStream.st,v 1.19 2006-08-07 13:27:05 fm Exp $'
+    ^ '$Header$'
 ! !
 
+
 EpsonFX1PrinterStream initialize!