changed: #isValidImageFile:
authorClaus Gittinger <cg@exept.de>
Thu, 19 Nov 2009 16:22:26 +0100
changeset 2803 b1f0edb9c078
parent 2802 dc8cd7d0f0fd
child 2804 9b50492473d5
changed: #isValidImageFile:
XPMReader.st
--- a/XPMReader.st	Tue Nov 17 14:30:13 2009 +0100
+++ b/XPMReader.st	Thu Nov 19 16:22:26 2009 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libview2' }"
 
 ImageReader subclass:#XPMReader
@@ -153,7 +152,7 @@
     ] do:[
         Stream lineTooLongErrorSignal handle:[:ex |
             line := nil.
-            Transcript showCR:'long line'.
+            Transcript showCR:'XPMReader [info]: long line'.
             ex return.
         ] do:[
             line := inStream nextLine.
@@ -634,7 +633,11 @@
 !XPMReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/XPMReader.st,v 1.63 2005-01-07 14:35:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/XPMReader.st,v 1.64 2009-11-19 15:22:26 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libview2/XPMReader.st,v 1.64 2009-11-19 15:22:26 cg Exp $'
 ! !
 
 XPMReader initialize!