summaryrefslogtreecommitdiff
path: root/sfx2/source/sidebar/ResourceManager.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-05-03 23:21:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-05-04 06:54:23 +0200
commit0bfa6a180850898ec5038ad70e09a2ff7baafa1a (patch)
tree616bad3d3714b562da478768455cdb3797da63ba /sfx2/source/sidebar/ResourceManager.cxx
parentb34f6f3b5ae6b889fbfd84719ee255282cb45e0e (diff)
Just use Any ctor instead of makeAny in sfx2
Change-Id: Ie707881d6f4cd4a2f92f4f5a89aa9e0b051db8a7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133783 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sfx2/source/sidebar/ResourceManager.cxx')
-rw-r--r--sfx2/source/sidebar/ResourceManager.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/sidebar/ResourceManager.cxx b/sfx2/source/sidebar/ResourceManager.cxx
index 1906e733db01..00b59df5e221 100644
--- a/sfx2/source/sidebar/ResourceManager.cxx
+++ b/sfx2/source/sidebar/ResourceManager.cxx
@@ -322,9 +322,9 @@ void ResourceManager::SaveDeckSettings(const DeckDescriptor* pDeckDesc)
utl::OConfigurationNode aDeckNode (aDeckRootNode.openNode(pDeckDesc->msNodeName));
- css::uno::Any aTitle(makeAny(pDeckDesc->msTitle));
- css::uno::Any aOrder(makeAny(pDeckDesc->mnOrderIndex));
- css::uno::Any aContextList(makeAny(sContextList));
+ css::uno::Any aTitle(Any(pDeckDesc->msTitle));
+ css::uno::Any aOrder(Any(pDeckDesc->mnOrderIndex));
+ css::uno::Any aContextList(sContextList);
bool bChanged = false;
if (aTitle != aDeckNode.getNodeValue("Title"))