diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 07:02:00 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 08:41:43 +0200 |
commit | 51c986230316643e42a3deff7e802a8455fd0459 (patch) | |
tree | c0b49c72d78de86996bfcd4163eef99de434b6ae /pyuno/source/loader/pyuno_loader.cxx | |
parent | e4f1a6ba19f14f39dc45fff20b2f15adf2db04ee (diff) |
Just use Any ctor instead of makeAny in pyuno
Change-Id: I53eb836c64e8e4a354c5c895bc7f16b168bd4cf3
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133793
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'pyuno/source/loader/pyuno_loader.cxx')
-rw-r--r-- | pyuno/source/loader/pyuno_loader.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/loader/pyuno_loader.cxx b/pyuno/source/loader/pyuno_loader.cxx index f01d8a0529a3..c9b8248c1b25 100644 --- a/pyuno/source/loader/pyuno_loader.cxx +++ b/pyuno/source/loader/pyuno_loader.cxx @@ -259,7 +259,7 @@ pyuno_Loader_get_implementation( Runtime runtime; PyRef pyCtx = runtime.any2PyObject( - css::uno::makeAny( css::uno::Reference(ctx) ) ); + css::uno::Any( css::uno::Reference(ctx) ) ); PyRef clazz = getObjectFromLoaderModule( "Loader" ); PyRef args ( PyTuple_New( 1 ), SAL_NO_ACQUIRE, NOT_NULL ); |