diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2011-08-31 17:04:22 +0200 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2011-09-01 14:06:36 +0200 |
commit | cd9934dec168c1cb8411b4a6e583841bf7afe7d3 (patch) | |
tree | 4ed851d4c007f29258dcfc7149c19bfe4115962a /starmath | |
parent | a3b2fdcde2c577495b88941e56d4cd2aa82034dc (diff) |
support TPROD, TCOPROD for .docx math export
Diffstat (limited to 'starmath')
-rw-r--r-- | starmath/source/ooxml.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/starmath/source/ooxml.cxx b/starmath/source/ooxml.cxx index 56036fbb8331..0bccd3aabac4 100644 --- a/starmath/source/ooxml.cxx +++ b/starmath/source/ooxml.cxx @@ -470,6 +470,8 @@ void SmOoxml::HandleOperator( const SmOperNode* pNode, int nLevel ) case TLINT: case TLLINT: case TLLLINT: + case TPROD: + case TCOPROD: { const SmSubSupNode* subsup = pNode->GetSubNode( 0 )->GetType() == NSUBSUP ? static_cast< const SmSubSupNode* >( pNode->GetSubNode( 0 )) : NULL; |