summaryrefslogtreecommitdiff
path: root/cli_ure
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-05-04 19:34:01 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-05-04 22:43:37 +0200
commit345d46112872842c34b6e3feb84d7407094dee64 (patch)
treea048a1b7d640c9ec7953bf65c43dac909f5c807f /cli_ure
parenteae2e1d6d61e7096d3fc0220832a1d1705d70093 (diff)
Just use Any ctor instead of makeAny in cli_ure
Change-Id: Iae41d9c4b600635bd5e2e61b65ea3859a14e6a1d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133840 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'cli_ure')
-rw-r--r--cli_ure/source/climaker/climaker_app.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/cli_ure/source/climaker/climaker_app.cxx b/cli_ure/source/climaker/climaker_app.cxx
index 97b1a5ce9bce..7b9bc001ae1b 100644
--- a/cli_ure/source/climaker/climaker_app.cxx
+++ b/cli_ure/source/climaker/climaker_app.cxx
@@ -395,12 +395,12 @@ SAL_IMPLEMENT_MAIN()
std::vector< rtl::Reference< unoidl::Provider > > unoidlMandatoryProvs;
for (auto& rRegistry : extra_registries)
{
- xSet->insert(makeAny(rRegistry));
+ xSet->insert(Any(rRegistry));
unoidlMgr->addProvider(rRegistry);
}
for (auto& rRegistry : mandatory_registries)
{
- xSet->insert(makeAny(rRegistry));
+ xSet->insert(Any(rRegistry));
rtl::Reference< unoidl::Provider > prov(unoidlMgr->addProvider(rRegistry));
unoidlMandatoryProvs.push_back(prov);
}