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/qa | |
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/qa')
-rw-r--r-- | basic/qa/cppunit/test_vba.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/qa/cppunit/test_vba.cxx b/basic/qa/cppunit/test_vba.cxx index 68d9bbaf2570..6ac6974fc081 100644 --- a/basic/qa/cppunit/test_vba.cxx +++ b/basic/qa/cppunit/test_vba.cxx @@ -236,8 +236,8 @@ void VBATest::testMiscOLEStuff() uno::Sequence< uno::Any > aArgs { - uno::makeAny(sPath), - uno::makeAny(OUString(o3tl::toU(pODBCDriverName))) + uno::Any(sPath), + uno::Any(OUString(o3tl::toU(pODBCDriverName))) }; for ( sal_uInt32 i=0; i<std::size( macroSource ); ++i ) |