summaryrefslogtreecommitdiff
path: root/writerfilter/source/filter
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@frugalware.org>2011-06-10 18:34:35 +0200
committerMiklos Vajna <vmiklos@frugalware.org>2011-06-10 18:34:35 +0200
commita15e61ec503c2b8fa446aa35596495c4a96d58e5 (patch)
treefccb0d0493f094ede2a7554a5ff8258dc6150606 /writerfilter/source/filter
parent2bdecc71102572a7888b897933b960c2fbeabc34 (diff)
pass the component context to RTFDocumentImpl
Diffstat (limited to 'writerfilter/source/filter')
-rw-r--r--writerfilter/source/filter/RtfFilter.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/writerfilter/source/filter/RtfFilter.cxx b/writerfilter/source/filter/RtfFilter.cxx
index a15fac8053a7..d22239016749 100644
--- a/writerfilter/source/filter/RtfFilter.cxx
+++ b/writerfilter/source/filter/RtfFilter.cxx
@@ -90,7 +90,7 @@ sal_Bool RtfFilter::filter( const uno::Sequence< beans::PropertyValue >& aDescri
writerfilter::Stream::Pointer_t pStream(
new writerfilter::dmapper::DomainMapper(m_xContext, xInputStream, m_xDstDoc, writerfilter::dmapper::DOCUMENT_RTF));
writerfilter::rtftok::RTFDocument::Pointer_t const pDocument(
- writerfilter::rtftok::RTFDocumentFactory::createDocument(xInputStream) );
+ writerfilter::rtftok::RTFDocumentFactory::createDocument(m_xContext, xInputStream) );
pDocument->resolve(*pStream);
#ifdef DEBUG_IMPORT
dmapperLogger->endDocument();