summaryrefslogtreecommitdiff
path: root/include/oox
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-01-14 22:40:52 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-01-21 08:13:28 +0000
commitacc3d942e1db108ebca3e9e0c086ab361acc3695 (patch)
tree5f8dcb93b451bd2b09dcdbf8094266719e48bd41 /include/oox
parent50a3c6b2f3b849885580b304929eabe4a71b9162 (diff)
starmath: only use WordProcessingML elements in DOCX files
Change-Id: I1b0f6d67bd0db0796756fd920ab92303a7ee7d79 (cherry picked from commit 80b55dcfc9754553e42625d0d6e9ebbb728200eb) Reviewed-on: https://gerrit.libreoffice.org/21494 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'include/oox')
-rw-r--r--include/oox/mathml/export.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/oox/mathml/export.hxx b/include/oox/mathml/export.hxx
index 49a2afe7e3b0..20b6b21da53a 100644
--- a/include/oox/mathml/export.hxx
+++ b/include/oox/mathml/export.hxx
@@ -12,6 +12,7 @@
#include <sax/fshelper.hxx>
#include <rtl/strbuf.hxx>
#include <oox/core/filterbase.hxx>
+#include <oox/export/utils.hxx>
#include <oox/dllapi.h>
namespace oox
@@ -24,7 +25,9 @@ namespace oox
class OOX_DLLPUBLIC FormulaExportBase
{
public:
- virtual void writeFormulaOoxml( ::sax_fastparser::FSHelperPtr m_pSerializer, oox::core::OoxmlVersion version ) = 0;
+ virtual void writeFormulaOoxml(::sax_fastparser::FSHelperPtr pSerializer,
+ oox::core::OoxmlVersion version,
+ oox::drawingml::DocumentType documentType) = 0;
virtual void writeFormulaRtf( OStringBuffer& rBuffer, rtl_TextEncoding nEncoding ) = 0;
protected: