[Libreoffice-commits] core.git: filter/source
Andrea Gelmini (via logerrit)
logerrit at kemper.freedesktop.org
Sat Aug 29 09:33:55 UTC 2020
filter/source/msfilter/eschesdo.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit e6cc643a2ae20aa831734bc9f1d17df3d6fc40bc
Author: Andrea Gelmini <andrea.gelmini at gelma.net>
AuthorDate: Fri Aug 28 12:59:24 2020 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Sat Aug 29 11:33:08 2020 +0200
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 at collabora.co.uk>
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));
}
More information about the Libreoffice-commits
mailing list