diff options
author | Armin Weiss <aw@openoffice.org> | 2007-11-19 09:21:42 +0000 |
---|---|---|
committer | Armin Weiss <aw@openoffice.org> | 2007-11-19 09:21:42 +0000 |
commit | 841e11c98a444218df99317b7df4b6a4b53e7c33 (patch) | |
tree | abf9be7ef1004393b92ac58a5ee7ec5ac9bb73ff /drawinglayer/source/primitive2d/gridprimitive2d.cxx | |
parent | 74546b549d975775b0632c2fdae8b0cfcde488ae (diff) |
#i39532# Lot of changes to make polygon stuff bezier-able
Diffstat (limited to 'drawinglayer/source/primitive2d/gridprimitive2d.cxx')
-rw-r--r-- | drawinglayer/source/primitive2d/gridprimitive2d.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drawinglayer/source/primitive2d/gridprimitive2d.cxx b/drawinglayer/source/primitive2d/gridprimitive2d.cxx index 4d776fb90aca..7174782457eb 100644 --- a/drawinglayer/source/primitive2d/gridprimitive2d.cxx +++ b/drawinglayer/source/primitive2d/gridprimitive2d.cxx @@ -4,9 +4,9 @@ * * $RCSfile: gridprimitive2d.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: aw $ $Date: 2007-07-27 09:03:33 $ + * last change: $Author: aw $ $Date: 2007-11-19 10:21:42 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -80,8 +80,8 @@ namespace drawinglayer // create grid matrix which transforms from scaled logic to view basegfx::B2DHomMatrix aRST; - aRST.rotate(fRotate); aRST.shearX(fShearX); + aRST.rotate(fRotate); aRST.translate(aTranslate.getX(), aTranslate.getY()); aRST *= rViewInformation.getViewTransformation(); |