Depth1Image.st
changeset 35 f1a194c18429
parent 12 9f0995fac1fa
child 38 2652fc96e660
--- a/Depth1Image.st	Mon Jan 17 15:20:24 1994 +0100
+++ b/Depth1Image.st	Fri Feb 25 14:13:21 1994 +0100
@@ -23,7 +23,7 @@
 
 this class represents bilevel (1 bit / pixel) images
 
-$Header: /cvs/stx/stx/libview/Depth1Image.st,v 1.3 1993-12-11 01:26:39 claus Exp $
+$Header: /cvs/stx/stx/libview/Depth1Image.st,v 1.4 1994-02-25 13:10:17 claus Exp $
 
 written summer 93 by claus
 '!
@@ -78,7 +78,7 @@
      mask        "{Class: SmallInteger}"|
 
 %{  /* NOCONTEXT */
-    if (_isByteArray(_INST(bytes))
+    if (__isByteArray(_INST(bytes))
      && _isSmallInteger(x)
      && _isSmallInteger(y)
      && _isSmallInteger(_INST(width)) ) {
@@ -149,7 +149,7 @@
      mask        "{Class: SmallInteger}"|
 
 %{  /* NOCONTEXT */
-    if (_isByteArray(_INST(bytes))
+    if (__isByteArray(_INST(bytes))
      && _isSmallInteger(x)
      && _isSmallInteger(y)
      && _isSmallInteger(_INST(width)) ) {
@@ -344,7 +344,7 @@
 
     if (_isSmallInteger(srcStart) && _isSmallInteger(dstStart)
      && _isSmallInteger(_INST(width)) && _isSmallInteger(mX)
-     && _isByteArray(srcBytes) && _isByteArray(dstBytes)) {
+     && __isByteArray(srcBytes) && __isByteArray(dstBytes)) {
         _mag = _intVal(mX);
         srcP = _ByteArrayInstPtr(srcBytes)->ba_element - 1 + _intVal(srcStart);
         dstP = _ByteArrayInstPtr(dstBytes)->ba_element - 1 + _intVal(dstStart);