PrinterStream.st
changeset 3834 9e45e1777ffb
parent 3814 54991ce632e7
child 4009 cc5317ca9a91
equal deleted inserted replaced
3833:bd6ce7a78e48 3834:9e45e1777ffb
  1054     stream nextPutAll:aCollection
  1054     stream nextPutAll:aCollection
  1055 
  1055 
  1056     "Modified: 10.4.1996 / 13:08:35 / cg"
  1056     "Modified: 10.4.1996 / 13:08:35 / cg"
  1057 !
  1057 !
  1058 
  1058 
  1059 nextPutLine:aCollection
       
  1060     self nextPutAll:aCollection.
       
  1061     self cr
       
  1062 
       
  1063     "Created: 3.1.1997 / 19:43:56 / cg"
       
  1064 !
       
  1065 
       
  1066 nextPutUntranslated:aCharacter
  1059 nextPutUntranslated:aCharacter
  1067     "send a raw character to the printer - even if not in native mode"
  1060     "send a raw character to the printer - even if not in native mode"
  1068 
  1061 
  1069     stream nextPut:aCharacter
  1062     stream nextPut:aCharacter
  1070 
  1063