diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-03-01 10:35:31 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-03-01 12:09:04 +0000 |
commit | d9262e19c942f2719bfa7de3a5059e4f6e0039c6 (patch) | |
tree | 8380b7cd97241e4fe9b5f1feae0e45132d267b07 /basegfx/source/tools | |
parent | 03899e1284db150d2da78b725aba7180147123c4 (diff) |
ofz: timeout loading emf with move clip record
Change-Id: Id5d60f0037873598e1447b063e66e9c29840587c
Reviewed-on: https://gerrit.libreoffice.org/34740
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'basegfx/source/tools')
-rw-r--r-- | basegfx/source/tools/b2dclipstate.cxx | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/basegfx/source/tools/b2dclipstate.cxx b/basegfx/source/tools/b2dclipstate.cxx index db0932494626..5ce779c94a03 100644 --- a/basegfx/source/tools/b2dclipstate.cxx +++ b/basegfx/source/tools/b2dclipstate.cxx @@ -173,6 +173,13 @@ namespace tools addPolyPolygon(rPolyPoly,XOR); } + void transform(const basegfx::B2DHomMatrix& rTranslate) + { + maPendingRanges.transform(rTranslate); + maPendingPolygons.transform(rTranslate); + maClipPoly.transform(rTranslate); + } + B2DPolyPolygon const & getClipPoly() const { commitPendingRanges(); @@ -481,6 +488,12 @@ namespace tools return mpImpl->getClipPoly(); } + void B2DClipState::transform(const basegfx::B2DHomMatrix& rTranslate) + { + return mpImpl->transform(rTranslate); + } + + } // end of namespace tools } // end of namespace basegfx |