Update change from 03-30 from trunk

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/branches/gnustep_stable_20070311@25045 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Adam Fedor 2007-04-15 04:24:27 +00:00
parent 45406a670c
commit b443442b32
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);
}