#OTHER by cg
authorClaus Gittinger <cg@exept.de>
Fri, 28 Jun 2019 08:49:59 +0200
changeset 24386 2b852b6804ba
parent 24385 dd84e4dfb5cc
child 24387 93437c789d8a
#OTHER by cg self class name -> self className
AbstractOperatingSystem.st
--- a/AbstractOperatingSystem.st	Fri Jun 28 08:49:56 2019 +0200
+++ b/AbstractOperatingSystem.st	Fri Jun 28 08:49:59 2019 +0200
@@ -8510,11 +8510,12 @@
 !AbstractOperatingSystem::PrinterInfo methodsFor:'printing & storing'!
 
 printOn:aStream
-    aStream nextPutAll:(self class name); nextPutAll:'('.
+    aStream nextPutAll:(self className); nextPutAll:'('.
     printerName printOn:aStream.
     aStream nextPutAll:')'.
 
     "Created: / 27-07-2006 / 12:30:28 / fm"
+    "Modified: / 28-06-2019 / 08:37:36 / Claus Gittinger"
 ! !
 
 !AbstractOperatingSystem::PrinterInfo methodsFor:'private'!