summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
authorpanoskorovesis <panoskorovesis@outlook.com>2021-07-15 10:39:23 +0300
committerMiklos Vajna <vmiklos@collabora.com>2021-07-19 10:02:38 +0200
commit4c525a0ec8734c09474395f887e7f58d0410605f (patch)
treeb6e8b659bba896e4b1ad39de3a7b7c4f60aa53c0 /include/vcl
parente6773aaa82a11485bf07c1e960f8c1df5f7f02d5 (diff)
Add Handler for Push Read
The handler separates MetaPushAction::Read from metaact.hxx Read implementation is now in SvmReader.hxx Change-Id: I16a36af9dfea7526d429675b7b0d39d1bd1d6dcb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118980 Tested-by: Jenkins Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/filter/SvmReader.hxx1
-rw-r--r--include/vcl/metaact.hxx1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/vcl/filter/SvmReader.hxx b/include/vcl/filter/SvmReader.hxx
index aa0fcda1aa20..1a7960d322f9 100644
--- a/include/vcl/filter/SvmReader.hxx
+++ b/include/vcl/filter/SvmReader.hxx
@@ -80,6 +80,7 @@ public:
rtl::Reference<MetaAction> TextAlignHandler();
rtl::Reference<MetaAction> MapModeHandler();
rtl::Reference<MetaAction> FontHandler(ImplMetaReadData* pData);
+ rtl::Reference<MetaAction> PushHandler();
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/include/vcl/metaact.hxx b/include/vcl/metaact.hxx
index 03631e6000a1..084944340450 100644
--- a/include/vcl/metaact.hxx
+++ b/include/vcl/metaact.hxx
@@ -1575,6 +1575,7 @@ public:
explicit MetaPushAction( PushFlags nFlags );
PushFlags GetFlags() const { return mnFlags; }
+ void SetPushFlags(const PushFlags nFlags) { mnFlags = nFlags; }
};
class UNLESS_MERGELIBS(VCL_DLLPUBLIC) MetaPopAction final : public MetaAction