[Libreoffice-commits] core.git: xmloff/source
Mohammed Abdul Azeem
azeemmysore at gmail.com
Fri Sep 2 21:15:38 UTC 2016
xmloff/source/core/xmlimp.cxx | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
New commits:
commit f7513f0f53f2d074c08610a68fb787bb379c31d4
Author: Mohammed Abdul Azeem <azeemmysore at gmail.com>
Date: Thu Sep 1 08:26:59 2016 +0530
tdf101725 - fixed missing autotexts from Standard
Change-Id: I1f751888e5fc28b54f4e32344769d568433eb387
Reviewed-on: https://gerrit.libreoffice.org/28572
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Michael Meeks <michael.meeks at 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,13 +842,13 @@ rName
void SAL_CALL SvXMLImport::characters( const OUString& rChars )
throw(xml::sax::SAXException, uno::RuntimeException, std::exception)
{
- if( !mpContexts->empty() )
+ if ( !mpFastContexts->empty() )
{
- mpContexts->back()->Characters( rChars );
+ mpFastContexts->back()->characters( rChars );
}
- else if ( !mpFastContexts->empty() )
+ else if( !mpContexts->empty() )
{
- mpFastContexts->back()->characters( rChars );
+ mpContexts->back()->Characters( rChars );
}
}
More information about the Libreoffice-commits
mailing list