diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 19:33:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2022-05-04 22:30:38 +0200 |
commit | eae2e1d6d61e7096d3fc0220832a1d1705d70093 (patch) | |
tree | dcfa4be8a742853afe550f4ae0563556ee8926c8 /comphelper/source | |
parent | 158bd4ae5c5fc9a3ab96c46fd20a56bc0d5b81dc (diff) |
Just use Any ctor instead of makeAny in comphelper
Change-Id: Ib3edbef27c2d25dae8bac07e0199af071131170e
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133839
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/configuration.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/comphelper/source/misc/configuration.cxx b/comphelper/source/misc/configuration.cxx index a8ef15ac9178..097eabb6a345 100644 --- a/comphelper/source/misc/configuration.cxx +++ b/comphelper/source/misc/configuration.cxx @@ -145,8 +145,8 @@ comphelper::detail::ConfigurationWrapper::ConfigurationWrapper(): // set root path css::uno::Sequence< css::uno::Any > params { - css::uno::makeAny( css::beans::NamedValue{ "nodepath", css::uno::makeAny( OUString("/"))} ), - css::uno::makeAny( css::beans::NamedValue{ "locale", css::uno::makeAny( OUString("*"))} ) }; + css::uno::Any( css::beans::NamedValue{ "nodepath", css::uno::Any( OUString("/"))} ), + css::uno::Any( css::beans::NamedValue{ "locale", css::uno::Any( OUString("*"))} ) }; css::uno::Reference< css::uno::XInterface > xCfg = xConfigProvider->createInstanceWithArguments(u"com.sun.star.configuration.ConfigurationAccess", |