*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Mon, 22 Dec 2014 01:44:58 +0100
changeset 6712 76690799863c
parent 6711 2b50385f7257
child 6713 248ef6ff9725
*** empty log message ***
XftFontDescription.st
--- 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 $'
 ! !