Add missing transformation change.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@24952 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2007-03-30 20:52:28 +00:00
parent 1c702a4308
commit 7f68c2ef43
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2007-03-30 Fred Kiefer <FredKiefer@gmx.de>
* header/xlib/XGGeometry.h: Replace calls to the now deprecated
methods on NSAffineTransform with correct ones.
2007-03-23 Fred Kiefer <FredKiefer@gmx.de>
* Source/art/ReadRect.m,

View file

@ -239,7 +239,7 @@ XGWindowRectToX (XGGState *s, NSRect r)
static inline XPoint
XGViewPointToX(XGGState *s, NSPoint p)
{
p = [s->ctm pointInMatrixSpace: p];
p = [s->ctm transformPoint: p];
return XGWindowPointToX(s, p);
}