From 046677539e002698425b11428488a1229fc3be20 Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Tue, 16 Aug 2011 14:44:58 +0200 Subject: proper namespace for ooxml math stuff --- starmath/source/ooxml.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'starmath') diff --git a/starmath/source/ooxml.cxx b/starmath/source/ooxml.cxx index e702b4c15bb2..10b576deb281 100644 --- a/starmath/source/ooxml.cxx +++ b/starmath/source/ooxml.cxx @@ -81,9 +81,8 @@ bool SmOoxml::ConvertFromStarMath( ::sax_fastparser::FSHelperPtr serializer ) if( pTree == NULL ) return false; m_pSerializer = serializer; -// TODO check that the document includes the m namespace m_pSerializer->startElementNS( XML_m, XML_oMath, - FSNS( XML_xmlns, XML_m ), "http://schemas.openxmlformats.org/wordprocessingml/2006/math", FSEND ); + FSNS( XML_xmlns, XML_m ), "http://schemas.openxmlformats.org/officeDocument/2006/math", FSEND ); HandleNodes( pTree, 0 ); m_pSerializer->endElementNS( XML_m, XML_oMath ); return true; -- cgit