diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 22:33:03 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-05 07:13:54 +0200 |
commit | b5ab864096c6b099e6a79587f881f287234278f9 (patch) | |
tree | a4cd8ca99bda1cbdfe9d0ba12e0d556982b9049b /basic/source/classes | |
parent | 3db0b7549e198ac0719ff52bff38a3d79e212083 (diff) |
Just use Any ctor instead of makeAny in basic
Change-Id: I21d9679064c4e68a1492d3550f083c3c91b5b43b
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133848
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'basic/source/classes')
-rw-r--r-- | basic/source/classes/sbxmod.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/classes/sbxmod.cxx b/basic/source/classes/sbxmod.cxx index 93feaf984d4d..67bf03ef9ecb 100644 --- a/basic/source/classes/sbxmod.cxx +++ b/basic/source/classes/sbxmod.cxx @@ -2616,9 +2616,9 @@ void SbUserFormModule::InitObject() uno::Sequence< uno::Any > aArgs { uno::Any(), - makeAny(m_xDialog), - makeAny(m_xModel), - makeAny(GetParent()->GetName()) + Any(m_xDialog), + Any(m_xModel), + Any(GetParent()->GetName()) }; pDocObject = new SbUnoObject( GetName(), uno::Any( xVBAFactory->createInstanceWithArguments( "ooo.vba.msforms.UserForm", aArgs ) ) ); |