summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxattributeoutput.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/docxattributeoutput.hxx')
-rw-r--r--sw/source/filter/ww8/docxattributeoutput.hxx6
1 files changed, 6 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/docxattributeoutput.hxx b/sw/source/filter/ww8/docxattributeoutput.hxx
index 02aeb45abd8e..e02eaaed8ddf 100644
--- a/sw/source/filter/ww8/docxattributeoutput.hxx
+++ b/sw/source/filter/ww8/docxattributeoutput.hxx
@@ -629,6 +629,9 @@ private:
/// Flag indicating that the section properties are being written
bool m_bOpenedSectPr;
+ /// Flag indicating that the header \ footer are being written
+ bool m_bWritingHeaderFooter;
+
/// Field data to remember in the text run
std::vector< FieldInfos > m_Fields;
String m_sFieldBkm;
@@ -734,6 +737,9 @@ public:
virtual oox::drawingml::DrawingML& GetDrawingML();
void BulletDefinition(int nId, const Graphic& rGraphic, Size aSize) SAL_OVERRIDE;
+
+ void SetWritingHeaderFooter( bool bWritingHeaderFooter ) { m_bWritingHeaderFooter = bWritingHeaderFooter; }
+ bool GetWritingHeaderFooter( ) { return m_bWritingHeaderFooter; }
};
#endif // _DOCXATTRIBUTEOUTPUT_HXX_