summaryrefslogtreecommitdiff
path: root/extensions/source/bibliography/general.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-05-04 12:01:16 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-05-04 19:27:44 +0200
commit5e4134535391e9977e72c7001e3b4a5eea113c3c (patch)
treec48fdca598529e9964d6029c3e2c176b836177ec /extensions/source/bibliography/general.cxx
parent031173da38de93e5153c5d2c105706df07127b99 (diff)
Just use Any ctor instead of makeAny in extensions
Change-Id: I0441d30044168563b0d5b8406fcc99b51a9cbc1e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133817 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'extensions/source/bibliography/general.cxx')
-rw-r--r--extensions/source/bibliography/general.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/bibliography/general.cxx b/extensions/source/bibliography/general.cxx
index 3f972af18ddc..acf29ea4e1c6 100644
--- a/extensions/source/bibliography/general.cxx
+++ b/extensions/source/bibliography/general.cxx
@@ -593,7 +593,7 @@ namespace
{
aText = m_rEntry.get_text();
}
- m_xPropSet->setPropertyValue("Text", makeAny(aText));
+ m_xPropSet->setPropertyValue("Text", Any(aText));
css::uno::Reference<css::form::XBoundComponent> xBound(m_xPropSet, css::uno::UNO_QUERY);
if (xBound.is())
@@ -667,7 +667,7 @@ namespace
m_bSelfChanging = true;
Sequence<sal_Int16> aSelection{ o3tl::narrowing<sal_Int16>(m_rComboBox.get_active()) };
- m_xPropSet->setPropertyValue("SelectedItems", makeAny(aSelection));
+ m_xPropSet->setPropertyValue("SelectedItems", Any(aSelection));
css::uno::Reference<css::form::XBoundComponent> xBound(m_xPropSet, css::uno::UNO_QUERY);
if (xBound.is())