diff options
author | panoskorovesis <panoskorovesis@outlook.com> | 2021-07-15 11:50:34 +0300 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2021-07-27 08:04:19 +0200 |
commit | 96294b206f02c9856dbcb8a21a0b20ce1180dd8c (patch) | |
tree | 2b4f185a8e35d233b367ea2546558fd6e1d5bcd4 /include/vcl/metaact.hxx | |
parent | f8847233c5b935d7ad1ea82bd464868d2bc3f69e (diff) |
Add Handler for RefPoint Read
The handler separates MetaRefPointAction::Read from metaact.hxx
Read implementation is now in SvmReader.hxx
Change-Id: I0de2cbefbb91a89e24b8c6e43fea80a7595baa5a
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/119193
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include/vcl/metaact.hxx')
-rw-r--r-- | include/vcl/metaact.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/metaact.hxx b/include/vcl/metaact.hxx index 1914c31c192e..fe79942ac28e 100644 --- a/include/vcl/metaact.hxx +++ b/include/vcl/metaact.hxx @@ -1759,6 +1759,8 @@ public: MetaRefPointAction( const Point& rRefPoint, bool bSet ); const Point& GetRefPoint() const { return maRefPoint; } + void SetRefPoint(const Point& rRefPoint) { maRefPoint = rRefPoint; } + void SetSetting(const bool bSet) { mbSet = bSet; } bool IsSetting() const { return mbSet; } }; |