dummy isDithered - for color compatibility
authorClaus Gittinger <cg@exept.de>
Mon, 19 Aug 2002 18:24:31 +0200
changeset 3700 9b40f1e55270
parent 3699 53cecc2349b2
child 3701 ccb98616318b
dummy isDithered - for color compatibility
Form.st
Image.st
--- a/Form.st	Mon Aug 19 18:11:43 2002 +0200
+++ b/Form.st	Mon Aug 19 18:24:31 2002 +0200
@@ -2076,6 +2076,12 @@
     "Modified: 13.5.1996 / 10:26:09 / cg"
 !
 
+isDithered
+    "for compatibility with color protocol"
+
+    ^ false
+!
+
 isForm
     "return true, if the receiver is some kind of form;
      true is returned here - the method is redefined from Object."
@@ -2143,6 +2149,6 @@
 !Form class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Form.st,v 1.121 2002-07-16 15:09:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Form.st,v 1.122 2002-08-19 16:24:31 cg Exp $'
 ! !
 Form initialize!
--- a/Image.st	Mon Aug 19 18:11:43 2002 +0200
+++ b/Image.st	Mon Aug 19 18:24:31 2002 +0200
@@ -11428,6 +11428,12 @@
     "Modified: 13.5.1996 / 10:26:36 / cg"
 !
 
+isDithered
+    "for compatibility with color protocol"
+
+    ^ false
+!
+
 isGrayscaleImage
     ^ (photometric ~= #palette)
       and:[photometric ~= #rgb]
@@ -12468,6 +12474,6 @@
 !Image class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/Image.st,v 1.320 2002-07-17 10:57:15 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/Image.st,v 1.321 2002-08-19 16:24:17 cg Exp $'
 ! !
 Image initialize!