tdf101725 - fixed missing autotexts from Standard
Change-Id: I1f751888e5fc28b54f4e32344769d568433eb387
Reviewed-on: https://gerrit.libreoffice.org/28572
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks@collabora.com>
diff --git a/xmloff/source/core/xmlimp.cxx b/xmloff/source/core/xmlimp.cxx
index cc59e91..f234cee 100644
--- a/xmloff/source/core/xmlimp.cxx
+++ b/xmloff/source/core/xmlimp.cxx
@@ -842,14 +842,14 @@ rName
void SAL_CALL SvXMLImport::characters( const OUString& rChars )
throw(xml::sax::SAXException, uno::RuntimeException, std::exception)
{
if( !mpContexts->empty() )
{
mpContexts->back()->Characters( rChars );
}
else if ( !mpFastContexts->empty() )
if ( !mpFastContexts->empty() )
{
mpFastContexts->back()->characters( rChars );
}
else if( !mpContexts->empty() )
{
mpContexts->back()->Characters( rChars );
}
}
void SAL_CALL SvXMLImport::ignorableWhitespace( const OUString& )