diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-10-15 07:53:32 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2014-10-15 09:01:16 +0200 |
commit | da77897d1923137574fd3a5a65921a5dbaf0aafc (patch) | |
tree | 6dda3a841b59456bf5af6a3db214b10e6eec6830 /svx/source/table | |
parent | b11968e8bfcc1c4560427a9ca1d9e20a1075eb1b (diff) |
nDrehWink -> nRotationAngle
Change-Id: I33ca88f38210140931b12a05e426d1373243156e
Diffstat (limited to 'svx/source/table')
-rw-r--r-- | svx/source/table/viewcontactoftableobj.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/table/viewcontactoftableobj.cxx b/svx/source/table/viewcontactoftableobj.cxx index 08e282578f28..1468b293ff1b 100644 --- a/svx/source/table/viewcontactoftableobj.cxx +++ b/svx/source/table/viewcontactoftableobj.cxx @@ -711,7 +711,7 @@ namespace sdr // create object matrix const GeoStat& rGeoStat(rTableObj.GetGeoStat()); const double fShearX(rGeoStat.nShearWink ? tan((36000 - rGeoStat.nShearWink) * F_PI18000) : 0.0); - const double fRotate(rGeoStat.nDrehWink ? (36000 - rGeoStat.nDrehWink) * F_PI18000 : 0.0); + const double fRotate(rGeoStat.nRotationAngle ? (36000 - rGeoStat.nRotationAngle) * F_PI18000 : 0.0); const basegfx::B2DHomMatrix aObjectMatrix(basegfx::tools::createScaleShearXRotateTranslateB2DHomMatrix( aObjectRange.getWidth(), aObjectRange.getHeight(), fShearX, fRotate, aObjectRange.getMinX(), aObjectRange.getMinY())); |