From 96294b206f02c9856dbcb8a21a0b20ce1180dd8c Mon Sep 17 00:00:00 2001 From: panoskorovesis Date: Thu, 15 Jul 2021 11:50:34 +0300 Subject: Add Handler for RefPoint Read MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- include/vcl/metaact.hxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/vcl/metaact.hxx') 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; } }; -- cgit