From 8dc087e032e3348841bb34817b3bb4efe97cd71d Mon Sep 17 00:00:00 2001 From: nico Date: Sat, 22 Jun 2002 15:46:30 +0000 Subject: [PATCH] Use new NSAffineTransform method to invert a matrix, not old one git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@13933 72102866-910b-0410-8b05-ffd578937521 --- Source/NSView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/NSView.m b/Source/NSView.m index ca08cc433..81f844b6e 100644 --- a/Source/NSView.m +++ b/Source/NSView.m @@ -3507,7 +3507,7 @@ static NSView* findByTag(NSView *view, int aTag, unsigned *level) } (*appImp)(_matrixToWindow, appSel, _boundsMatrix); [_matrixFromWindow takeMatrixFromTransform: _matrixToWindow]; - [_matrixFromWindow inverse]; + [_matrixFromWindow invert]; superviewsVisibleRect = [self convertRect: [_super_view visibleRect] fromView: _super_view];