xmloff/source/core/xmlimp.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit f7513f0f53f2d074c08610a68fb787bb379c31d4 Author: Mohammed Abdul Azeem <azeemmys...@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 <c...@libreoffice.org> Reviewed-by: Michael Meeks <michael.me...@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 ); } } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits