From 283fba09952bcbca74f879ad94371c09ff92907a Mon Sep 17 00:00:00 2001 From: Luboš Luňák Date: Wed, 17 Aug 2011 14:43:18 +0200 Subject: explicitly do nothing about formula placeholders for ooxml export --- starmath/source/ooxml.cxx | 3 +++ 1 file changed, 3 insertions(+) (limited to 'starmath') diff --git a/starmath/source/ooxml.cxx b/starmath/source/ooxml.cxx index 84f6574ca267..df1b717f72fd 100644 --- a/starmath/source/ooxml.cxx +++ b/starmath/source/ooxml.cxx @@ -166,6 +166,9 @@ void SmOoxml::HandleNode(SmNode *pNode,int nLevel) case NALIGN: HandleMAlign(pNode,nLevel); break; + case NPLACE: + // explicitly do nothing, MSOffice treats that as a placeholder if item is missing + break; case NBLANK: *pS << sal_uInt8(CHAR); *pS << sal_uInt8(0x98); -- cgit