summaryrefslogtreecommitdiff
path: root/sw/source/filter/ww8/docxexport.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/filter/ww8/docxexport.hxx')
-rw-r--r--sw/source/filter/ww8/docxexport.hxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/sw/source/filter/ww8/docxexport.hxx b/sw/source/filter/ww8/docxexport.hxx
index 5dd9e04b9f1b..10f2f8de7beb 100644
--- a/sw/source/filter/ww8/docxexport.hxx
+++ b/sw/source/filter/ww8/docxexport.hxx
@@ -38,6 +38,7 @@ class SwTableNode;
class SwTxtNode;
class SwGrfNode;
class SwOLENode;
+class DocxSdrExport;
namespace oox {
namespace drawingml { class DrawingML; }
@@ -89,6 +90,9 @@ class DocxExport : public MSWordExportBase
/// Exporter of the VML shapes.
oox::vml::VMLExport *m_pVMLExport;
+ /// Exporter of drawings.
+ DocxSdrExport* m_pSdrExport;
+
DocxSettingsData settings;
public:
@@ -242,6 +246,9 @@ public:
/// Reference to the VMLExport instance for the main document.
oox::vml::VMLExport& VMLExporter();
+ /// Reference to the DocxSdrExport instance for the main document.
+ DocxSdrExport& SdrExporter();
+
/// Set the document default tab stop.
void setDefaultTabStop( int stop ) { settings.defaultTabStop = stop; }