diff options
-rw-r--r-- | starmath/source/ooxmlimport.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx index 60fb2304d46c..1cdee7fa65c0 100644 --- a/starmath/source/ooxmlimport.cxx +++ b/starmath/source/ooxmlimport.cxx @@ -346,6 +346,10 @@ OUString SmOoxmlImport::handleD() closing = STR( " right " ) + closing; if( separator == STR( "|" )) // plain "|" would be actually "V" (logical or) separator = STR( " mline " ); + if( opening.isEmpty()) + opening = STR( "left none " ); + if( closing.isEmpty()) + closing = STR( " right none" ); OUStringBuffer ret; ret.append( opening ); bool first = true; |