ImageReader.st
changeset 2044 9ea84b4ba249
parent 2043 7b8d741538a0
child 2080 5361e4ffaaaf
--- a/ImageReader.st	Thu Feb 05 15:22:39 1998 +0100
+++ b/ImageReader.st	Thu Feb 05 15:30:50 1998 +0100
@@ -1149,7 +1149,7 @@
     if (__isByteArray(data)
      && __bothSmallInteger(width, height)) {
 	__decodeDelta__(__ByteArrayInstPtr(data)->ba_element,
-		    _intVal(width), _intVal(height));
+		    __intVal(width), __intVal(height));
 	RETURN ( self );
     }
 %}
@@ -1167,8 +1167,8 @@
      && __bothSmallInteger(offset, count)) {
 	if (__decodeCCITTgroup3__(__ByteArrayInstPtr(srcBytes)->ba_element,
 			          __ByteArrayInstPtr(dstBytes)->ba_element
-			          + _intVal(offset) - 1,
-			          _intVal(count))) {
+			          + __intVal(offset) - 1,
+			          __intVal(count))) {
 	    RETURN ( self );
 	}
     }
@@ -1957,5 +1957,5 @@
 !ImageReader class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/ImageReader.st,v 1.61 1998-02-05 14:22:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/ImageReader.st,v 1.62 1998-02-05 14:30:50 cg Exp $'
 ! !