diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-28 12:59:24 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-08-29 11:33:08 +0200 |
commit | e6cc643a2ae20aa831734bc9f1d17df3d6fc40bc (patch) | |
tree | 28aa4c99c58c35a04167ed45a0bd5e13f7421a15 | |
parent | 977c1ff1864e3dad1d22e2908e52d47bf6069b0f (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: I45a05751219cd8f39240152e208b8c9eae0433ec
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101606
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
-rw-r--r-- | filter/source/msfilter/eschesdo.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/filter/source/msfilter/eschesdo.cxx b/filter/source/msfilter/eschesdo.cxx index efe3c908b6b4..5619e1e09fa9 100644 --- a/filter/source/msfilter/eschesdo.cxx +++ b/filter/source/msfilter/eschesdo.cxx @@ -1139,9 +1139,9 @@ void ImplEESdrObject::Init( ImplEESdrWriter& rEx ) if(GetType() == "drawing.Group") { // if it's a group, the unrotated range is needed for that group - const basegfx::B2DRange aUnroatedRange(getUnrotatedGroupBoundRange(mXShape)); - const Point aNewP(basegfx::fround(aUnroatedRange.getMinX()), basegfx::fround(aUnroatedRange.getMinY())); - const Size aNewS(basegfx::fround(aUnroatedRange.getWidth()), basegfx::fround(aUnroatedRange.getHeight())); + const basegfx::B2DRange aUnrotatedRange(getUnrotatedGroupBoundRange(mXShape)); + const Point aNewP(basegfx::fround(aUnrotatedRange.getMinX()), basegfx::fround(aUnrotatedRange.getMinY())); + const Size aNewS(basegfx::fround(aUnrotatedRange.getWidth()), basegfx::fround(aUnrotatedRange.getHeight())); SetRect(rEx.ImplMapPoint(aNewP), rEx.ImplMapSize(aNewS)); } |