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 /vbahelper | |
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 'vbahelper')
-rw-r--r-- | vbahelper/source/vbahelper/vbahelper.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbahelper.cxx b/vbahelper/source/vbahelper/vbahelper.cxx index 388b50ac0173..e594f50d023e 100644 --- a/vbahelper/source/vbahelper/vbahelper.cxx +++ b/vbahelper/source/vbahelper/vbahelper.cxx @@ -31,7 +31,7 @@ #include <com/sun/star/uno/XComponentContext.hpp> #include <com/sun/star/lang/XUnoTunnel.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/util/MeasureUnit.hpp> #include <com/sun/star/awt/XWindow.hpp> #include <com/sun/star/awt/XDialog.hpp> @@ -102,7 +102,7 @@ getIntrospectionAccess( const uno::Any& aObject ) throw (uno::RuntimeException) if( !xIntrospection.is() ) { uno::Reference< uno::XComponentContext > xContext( comphelper::getProcessComponentContext() ); - xIntrospection.set( beans::Introspection::create( xContext ) ); + xIntrospection.set( beans::theIntrospection::get( xContext ) ); } return xIntrospection->inspect( aObject ); } |