From b7ac8036a8361acc71925056cd182b704d2a701a Mon Sep 17 00:00:00 2001 From: Henning Brinkmann Date: Mon, 30 Oct 2006 08:38:54 +0000 Subject: [PATCH] do not pass on text that is to be ignored --- writerfilter/source/dmapper/DomainMapper_Impl.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx index 04b9be181420..5ea91d8a05cc 100644 --- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx +++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx @@ -567,7 +567,7 @@ ListTablePtr DomainMapper_Impl::GetListTable() void DomainMapper_Impl::finishParagraph( PropertyMapPtr pPropertyMap ) { uno::Reference< text::XTextAppendAndConvert > xTextAppendAndConvert = m_aTextAppendStack.top(); - if(xTextAppendAndConvert.is()) + if(xTextAppendAndConvert.is() && ! m_TableManager.isIgnore()) { try { @@ -591,7 +591,7 @@ void DomainMapper_Impl::finishParagraph( PropertyMapPtr pPropertyMap ) void DomainMapper_Impl::appendTextPortion( const ::rtl::OUString& rString, PropertyMapPtr pPropertyMap ) { uno::Reference< text::XTextAppendAndConvert > xTextAppendAndConvert = m_aTextAppendStack.top(); - if(xTextAppendAndConvert.is()) + if(xTextAppendAndConvert.is() && ! m_TableManager.isIgnore()) { try {