changed: #isValidImageFile:
authorClaus Gittinger <cg@exept.de>
Thu, 19 Nov 2009 16:23:08 +0100
changeset 2804 9b50492473d5
parent 2803 b1f0edb9c078
child 2805 86e11995a750
changed: #isValidImageFile:
XBMReader.st
--- a/XBMReader.st	Thu Nov 19 16:22:26 2009 +0100
+++ b/XBMReader.st	Thu Nov 19 16:23:08 2009 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libview2' }"
 
 ImageReader subclass:#XBMReader
@@ -139,7 +138,7 @@
     ] do:[
         Stream lineTooLongErrorSignal handle:[:ex |
             line := nil.
-            Transcript showCR:'long line'.
+            Transcript showCR:'XBMReader [info]: long line'.
             ex return.
         ] do:[
             line := inStream nextLine.
@@ -392,7 +391,11 @@
 !XBMReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/XBMReader.st,v 1.53 2005-07-11 13:20:15 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/XBMReader.st,v 1.54 2009-11-19 15:23:08 cg Exp $'
+!
+
+version_CVS
+    ^ '$Header: /cvs/stx/stx/libview2/XBMReader.st,v 1.54 2009-11-19 15:23:08 cg Exp $'
 ! !
 
 XBMReader initialize!