diff options
author | Bjoern Michaelsen <bjoern.michaelsen@libreoffice.org> | 2020-02-16 20:38:38 +0100 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@libreoffice.org> | 2020-02-16 22:42:06 +0100 |
commit | bcc942fc34aad7db9b96c0e3d395c7426822327b (patch) | |
tree | c6fda73a4b55a67069378a886896e12d496bbfcf /sw/inc/fmtfld.hxx | |
parent | 1bc6f5868fd5e780e70f999144432f30d8f64149 (diff) |
GatherRefFields for ww8
Change-Id: Ic40c1241854bdbcdf7987ab592e0f07ecdd73f0c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88823
Tested-by: Jenkins
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@libreoffice.org>
Diffstat (limited to 'sw/inc/fmtfld.hxx')
-rw-r--r-- | sw/inc/fmtfld.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/inc/fmtfld.hxx b/sw/inc/fmtfld.hxx index e68a9be41582..3ddce1977d96 100644 --- a/sw/inc/fmtfld.hxx +++ b/sw/inc/fmtfld.hxx @@ -27,6 +27,7 @@ #include "swdllapi.h" #include "calbck.hxx" #include "ndindex.hxx" +#include "reffld.hxx" class SwField; class SwTextField; @@ -61,6 +62,11 @@ namespace sw { std::vector<sal_uLong>& m_rvNodeIndex; GatherNodeIndexHint(std::vector<sal_uLong>& rvNodeIndex) : m_rvNodeIndex(rvNodeIndex) {}; }; + struct GatherRefFieldsHint final : SfxHint { + std::vector<SwGetRefField*>& m_rvRFields; + const sal_uInt16 m_nType; + GatherRefFieldsHint(std::vector<SwGetRefField*>& rvRFields, const sal_uInt16 nType) : m_rvRFields(rvRFields), m_nType(nType) {}; + }; } |