diff options
author | Caolán McNamara <cmc@openoffice.org> | 2000-12-11 15:57:11 +0000 |
---|---|---|
committer | Caolán McNamara <cmc@openoffice.org> | 2000-12-11 15:57:11 +0000 |
commit | 5ae8a594dd38c5ee338eee08539458277dfb86ff (patch) | |
tree | 65150a6983243dc3bec50d852ea57f68592aa1b9 /starmath | |
parent | bf557c02396ff77fcac1d30e2f466922fe40a2c3 (diff) |
Missing NSPECIAL support, treat as NMATH until entity preservation in XML
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/mathml.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/starmath/source/mathml.cxx b/starmath/source/mathml.cxx index 003985098ce6..60dcda5811fa 100644 --- a/starmath/source/mathml.cxx +++ b/starmath/source/mathml.cxx @@ -2,9 +2,9 @@ * * $RCSfile: mathml.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: cmc $ $Date: 2000-12-11 16:27:34 $ + * last change: $Author: cmc $ $Date: 2000-12-11 16:57:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -2473,6 +2473,7 @@ void SmXMLExport::ExportNodes(const SmNode *pNode, int nLevel) case NTEXT: ExportText(pNode,nLevel); break; + case NSPECIAL: //NSPECIAL requires some sort of Entity preservation in the XML engine. case NMATH: ExportMath(pNode,nLevel); break; |