From 25cedf1dc717227d532e96062d03ba3ef1140a73 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 7 Mar 2014 10:31:07 +0100 Subject: Introduce com.sun.star.beans.theIntrospection singleton ...deprecating com.sun.star.beans.Introspection (single-instance) service. Change-Id: Ica2e3a3541c7dcb1aab79222c5abf40d6988c882 --- eventattacher/source/eventattacher.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'eventattacher') diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx index d7f4715eb09b..19cfae2535f7 100644 --- a/eventattacher/source/eventattacher.cxx +++ b/eventattacher/source/eventattacher.cxx @@ -22,7 +22,7 @@ #include #include #include -#include +#include #include #include #include @@ -389,7 +389,7 @@ Reference< XIntrospection > EventAttacherImpl::getIntrospection() throw( Excepti Guard< Mutex > aGuard( m_aMutex ); if( !m_xIntrospection.is() ) { - m_xIntrospection = Introspection::create( m_xContext ); + m_xIntrospection = theIntrospection::get( m_xContext ); } return m_xIntrospection; } -- cgit