diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-07 10:31:07 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-07 10:33:07 +0100 |
commit | 25cedf1dc717227d532e96062d03ba3ef1140a73 (patch) | |
tree | 9c161df8e8e9e33b8b8153344af2662d0a460416 /basic | |
parent | 3952988da628d87e884168d23a352e4b151bf5ea (diff) |
Introduce com.sun.star.beans.theIntrospection singleton
...deprecating com.sun.star.beans.Introspection (single-instance) service.
Change-Id: Ica2e3a3541c7dcb1aab79222c5abf40d6988c882
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/classes/sbunoobj.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/classes/sbunoobj.cxx b/basic/source/classes/sbunoobj.cxx index 5e21eecb5044..34a9c9ba401b 100644 --- a/basic/source/classes/sbunoobj.cxx +++ b/basic/source/classes/sbunoobj.cxx @@ -47,7 +47,7 @@ #include <com/sun/star/beans/PropertyConcept.hpp> #include <com/sun/star/beans/MethodConcept.hpp> #include <com/sun/star/beans/XPropertySet.hpp> -#include <com/sun/star/beans/Introspection.hpp> +#include <com/sun/star/beans/theIntrospection.hpp> #include <com/sun/star/script/BasicErrorException.hpp> #include <com/sun/star/script/InvocationAdapterFactory.hpp> #include <com/sun/star/script/XAllListener.hpp> @@ -2455,7 +2455,7 @@ void SbUnoObject::doIntrospection( void ) { // get the introspection service Reference< XComponentContext > xContext( comphelper::getProcessComponentContext() ); - xIntrospection = Introspection::create( xContext ); + xIntrospection = theIntrospection::get( xContext ); } // pass the introspection |