diff options
author | panoskorovesis <panoskorovesis@outlook.com> | 2021-07-08 12:07:49 +0300 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-07-09 11:46:53 +0200 |
commit | 6cd8eeb66443dda80cf88205f33f184314d85c49 (patch) | |
tree | 3612071b11528018a3fabf1ef794e1d088b8c32a /include/vcl/metaact.hxx | |
parent | e9d92a40bd59954d6716e889f4925319f4ab322e (diff) |
Add Handler for MetaPolyPolygon Read
The handler separates the MetaPolyPolygonAction::Read from metaact.hxx
Read implementation is now in SvmReader.hxx
Change-Id: Iad883a65c4c018c9a6852a8b05011b5609f477a2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118608
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl/metaact.hxx')
-rw-r--r-- | include/vcl/metaact.hxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/vcl/metaact.hxx b/include/vcl/metaact.hxx index 94d45ee0365f..aca0c4e2c493 100644 --- a/include/vcl/metaact.hxx +++ b/include/vcl/metaact.hxx @@ -486,6 +486,7 @@ public: virtual void Scale( double fScaleX, double fScaleY ) override; const tools::PolyPolygon& GetPolyPolygon() const { return maPolyPoly; } + void SetPolyPolygon(tools::PolyPolygon& rPolyPoly) { maPolyPoly = rPolyPoly; } }; class SAL_DLLPUBLIC_RTTI MetaTextAction final : public MetaAction |