From b443442b328110abe44e21ba857be14136cc8831 Mon Sep 17 00:00:00 2001 From: Adam Fedor Date: Sun, 15 Apr 2007 04:24:27 +0000 Subject: [PATCH] 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 --- ChangeLog | 5 +++++ Headers/xlib/XGGeometry.h | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 67e2903..254d28b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-03-30 Fred Kiefer + + * header/xlib/XGGeometry.h: Replace calls to the now deprecated + methods on NSAffineTransform with correct ones. + 2007-03-23 Fred Kiefer * Source/art/ReadRect.m, diff --git a/Headers/xlib/XGGeometry.h b/Headers/xlib/XGGeometry.h index d8f9366..2880a36 100644 --- a/Headers/xlib/XGGeometry.h +++ b/Headers/xlib/XGGeometry.h @@ -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); }