[PATCH] fdo#47326 fix RTF import of mixed super/nonsuper text
Miklos Vajna
vmiklos at suse.cz
Fri Mar 23 04:47:41 PDT 2012
In most cases \super has its own group, but it's valid to have mixed
super and non-super text in a single group, as long as \super and
\nosupersub keywords are used: handle this.
---
writerfilter/source/rtftok/rtfdocumentimpl.cxx | 8 ++++++++
3 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 84267f3..d378694 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -1932,6 +1932,14 @@ int RTFDocumentImpl::dispatchFlag(RTFKeyword nKeyword)
m_aStates.top().aCharacterSprms->push_back(make_pair(NS_ooxml::LN_EG_RPrBase_vertAlign, pValue));
}
break;
+ case RTF_NOSUPERSUB:
+ if (m_pCurrentBuffer == &m_aSuperBuffer)
+ {
+ replayBuffer(m_aSuperBuffer);
+ m_pCurrentBuffer = 0;
+ }
+ m_aStates.top().aCharacterSprms.erase(NS_ooxml::LN_EG_RPrBase_vertAlign);
+ break;
case RTF_LINEPPAGE:
case RTF_LINECONT:
{
--
1.7.7
--4SFOXa2GPu3tIq4H--
More information about the LibreOffice
mailing list