diff options
-rw-r--r-- | cli_ure/source/climaker/climaker_app.cxx | 4 |
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); } |