XftFontDescription.st
changeset 6712 76690799863c
parent 6708 75a3a5a4840c
child 6819 f91377f97414
child 6833 0dd4eae34605
--- a/XftFontDescription.st	Mon Dec 22 00:33:56 2014 +0100
+++ b/XftFontDescription.st	Mon Dec 22 01:44:58 2014 +0100
@@ -591,7 +591,7 @@
 	"/ YES YES YES: this MUST be transformed!!
 	"/ (see htmlView) fix the notebook, please.
 	transformation notNil ifTrue:[
-	    clipPnt := transformation applyTo:(clipX @ clipY).
+	    clipPnt := transformation transformPoint:(clipX @ clipY).
 	    clipX := clipPnt x ceiling.
 	    clipY := clipPnt y ceiling.
 "/            clipX := (transformation applyToX:clipX) ceiling.
@@ -603,7 +603,7 @@
 	drawX := xArg.
 	drawY := yArg.
     ] ifFalse:[
-	drawPnt := transformation applyTo:(xArg @ yArg).
+	drawPnt := transformation transformPoint:(xArg @ yArg).
 	drawX := drawPnt x ceiling.
 	drawY := drawPnt y ceiling.
 "/        drawX := (transformation applyToX:xArg) ceiling.
@@ -2098,11 +2098,11 @@
 !XftFontDescription class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.67 2014-12-21 23:03:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.68 2014-12-22 00:44:58 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.67 2014-12-21 23:03:40 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libview/XftFontDescription.st,v 1.68 2014-12-22 00:44:58 cg Exp $'
 ! !