# HG changeset patch # User mawalch # Date 1468241905 -7200 # Node ID 856722248c9f48abde86db8ddfef9e46e0378892 # Parent f0615c47cf78cad953797ad5b218f35853ce817a #OTHER by mawalch class: Workflow::NamedElementsLibrary changed: #workflowFileSaveEncodingVector_V1 (send #elementDescriptorForNonNilInstanceVariables instead of #encodingVectorForNonNilInstanceVariables) Move away from deprecated API (Character asciiValue -> Character codePoint) diff -r f0615c47cf78 -r 856722248c9f 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!