diff options
author | Armin Le Grand <Armin.Le.Grand@cib.de> | 2017-09-14 16:45:56 +0200 |
---|---|---|
committer | Armin Le Grand <Armin.Le.Grand@cib.de> | 2017-09-15 12:58:04 +0200 |
commit | ab65fe804cf3a97bd172b5551b553b9bcde6d756 (patch) | |
tree | 3c956b067379cc1e3fddd5eb2ce341eab52a5f0e /sc | |
parent | 2f16219741aba016677103e4b22738d055c39a91 (diff) |
borderline: Extended decompose
Decompose of BorderLinePrimitive2D extended to take care
of non-perpendicular line endings for matching. Improved
matching, one error in calc fixed
Change-Id: I869a75385711b58e6725daba0f22be8a98158ad9
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/view/output.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/view/output.cxx b/sc/source/ui/view/output.cxx index da4c342d44d6..858ea99ef83f 100644 --- a/sc/source/ui/view/output.cxx +++ b/sc/source/ui/view/output.cxx @@ -660,7 +660,7 @@ void ScOutputData::SetCellRotations() const double fOrient((bLayoutRTL ? -1.0 : 1.0) * nAttrRotate * F_PI18000); // 1/100th degrees -> [0..2PI] svx::frame::Array& rArray = mrTabInfo.maArray; - rArray.SetCellRotation(nY+1, nX+1, eRotMode, fOrient); + rArray.SetCellRotation(nX+1, nY+1, eRotMode, fOrient); } } } |