changed #'=' fix error when comparing
authorStefan Vogel <sv@exept.de>
Tue, 22 Jul 2008 21:53:09 +0200
changeset 2524 166a10a040c1
parent 2523 497ef51ffbe6
child 2525 645e5cc2fb38
changed #'=' fix error when comparing
DrawAdaptor.st
--- a/DrawAdaptor.st	Tue Jul 22 20:49:37 2008 +0200
+++ b/DrawAdaptor.st	Tue Jul 22 21:53:09 2008 +0200
@@ -149,7 +149,7 @@
     "two TranslatedSymbols are equal, if they have the same symbol"
 
     self species == anObject species ifTrue:[
-        ^ value = anObject value.
+        ^ value = anObject realValue.
     ].
     ^ value = anObject.
 
@@ -217,5 +217,5 @@
 !DrawAdaptor class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DrawAdaptor.st,v 1.2 2008-07-22 18:49:37 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DrawAdaptor.st,v 1.3 2008-07-22 19:53:09 stefan Exp $'
 ! !