diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-03 23:24:38 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 08:36:09 +0200 |
commit | e4f1a6ba19f14f39dc45fff20b2f15adf2db04ee (patch) | |
tree | 25f69113a1a4050921d2260c553830c838cd83b5 /sccomp | |
parent | ae8f735965678680835e2408494c2b226047f755 (diff) |
Just use Any ctor instead of makeAny in sccomp
Change-Id: I4872a74604b97ba68a7db10c2980fc32605bc492
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133787
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sccomp')
-rw-r--r-- | sccomp/qa/unit/SwarmSolverTest.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sccomp/qa/unit/SwarmSolverTest.cxx b/sccomp/qa/unit/SwarmSolverTest.cxx index 966f9c673fc5..2503090514a9 100644 --- a/sccomp/qa/unit/SwarmSolverTest.cxx +++ b/sccomp/qa/unit/SwarmSolverTest.cxx @@ -275,7 +275,7 @@ void SwarmSolverTest::testMultipleVariables() uno::UNO_QUERY_THROW); uno::Reference<beans::XPropertySet> xPropSet(xSolver, uno::UNO_QUERY_THROW); - xPropSet->setPropertyValue("Integer", uno::makeAny(true)); + xPropSet->setPropertyValue("Integer", uno::Any(true)); table::CellAddress aObjective(0, 5, 7); |