mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 11:51:27 +00:00
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:
parent
1c702a4308
commit
7f68c2ef43
2 changed files with 6 additions and 1 deletions
|
@ -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,
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue