summaryrefslogtreecommitdiff
path: root/sw/inc/fmtfld.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/fmtfld.hxx')
-rw-r--r--sw/inc/fmtfld.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sw/inc/fmtfld.hxx b/sw/inc/fmtfld.hxx
index b2e6a6bf1508..e68a9be41582 100644
--- a/sw/inc/fmtfld.hxx
+++ b/sw/inc/fmtfld.hxx
@@ -26,6 +26,7 @@
#include "swdllapi.h"
#include "calbck.hxx"
+#include "ndindex.hxx"
class SwField;
class SwTextField;
@@ -56,6 +57,10 @@ namespace sw {
bool& m_rbHasHiddenInformationNotes;
HasHiddenInformationNotesHint(bool& rbHasHiddenInformationNotes) : m_rbHasHiddenInformationNotes(rbHasHiddenInformationNotes) {};
};
+ struct GatherNodeIndexHint final : SfxHint {
+ std::vector<sal_uLong>& m_rvNodeIndex;
+ GatherNodeIndexHint(std::vector<sal_uLong>& rvNodeIndex) : m_rvNodeIndex(rvNodeIndex) {};
+ };
}