summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/DomainMapper_Impl.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/DomainMapper_Impl.cxx b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
index edf66f505967..fbf9acb46caf 100644
--- a/writerfilter/source/dmapper/DomainMapper_Impl.cxx
+++ b/writerfilter/source/dmapper/DomainMapper_Impl.cxx
@@ -3249,14 +3249,13 @@ void DomainMapper_Impl::PopFieldContext()
xToInsert = uno::Reference< text::XTextContent >(pContext->GetTextField(), uno::UNO_QUERY);
if( xToInsert.is() )
{
- uno::Reference< text::XTextAppendAndConvert > xTextAppendAndConvert( xTextAppend, uno::UNO_QUERY_THROW );
uno::Sequence<beans::PropertyValue> aValues;
// Character properties of the field show up here the
// last (always empty) run. Inherit character
// properties from there.
if (m_pLastCharacterContext.get())
aValues = m_pLastCharacterContext->GetPropertyValues();
- xTextAppendAndConvert->appendTextContent(xToInsert, aValues);
+ appendTextContent(xToInsert, aValues);
}
else
{