summaryrefslogtreecommitdiff
path: root/filter/source/config/cache/typedetection.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/config/cache/typedetection.cxx')
-rw-r--r--filter/source/config/cache/typedetection.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/source/config/cache/typedetection.cxx b/filter/source/config/cache/typedetection.cxx
index e9e149511cff..6679a5c8973d 100644
--- a/filter/source/config/cache/typedetection.cxx
+++ b/filter/source/config/cache/typedetection.cxx
@@ -53,7 +53,7 @@ TypeDetection::TypeDetection(const css::uno::Reference< css::uno::XComponentCont
, m_xTerminateListener(new TerminateDetection(this))
, m_bCancel(false)
{
- css::frame::Desktop::create(m_xContext)->addTerminateListener(m_xTerminateListener.get());
+ css::frame::Desktop::create(m_xContext)->addTerminateListener(m_xTerminateListener);
BaseContainer::init(rxContext ,
"com.sun.star.comp.filter.config.TypeDetection" ,
{ "com.sun.star.document.TypeDetection" },
@@ -63,7 +63,7 @@ TypeDetection::TypeDetection(const css::uno::Reference< css::uno::XComponentCont
TypeDetection::~TypeDetection()
{
- css::frame::Desktop::create(m_xContext)->removeTerminateListener(m_xTerminateListener.get());
+ css::frame::Desktop::create(m_xContext)->removeTerminateListener(m_xTerminateListener);
}