summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-05-05 09:44:28 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-05-05 11:44:48 +0200
commit7c5d3d74ee7c1f5bb87e46c5ff532451a94cf115 (patch)
treec02acd364bad74c777dd04f4b4f1c70529fd22b9 /writerfilter
parent08c979e235aa993f50e54224f8c715bb70697c33 (diff)
Just use Any ctor instead of makeAny (Linux, sequel)
Change-Id: Idcf537a838bb0e47cfa31db8bc09e477b277ee37 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133875 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/dmapper/PropertyMap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerfilter/source/dmapper/PropertyMap.cxx b/writerfilter/source/dmapper/PropertyMap.cxx
index 80c30a527949..4c9b84c3755e 100644
--- a/writerfilter/source/dmapper/PropertyMap.cxx
+++ b/writerfilter/source/dmapper/PropertyMap.cxx
@@ -1482,9 +1482,9 @@ void SectionPropertyMap::CloseSectionGroup( DomainMapper_Impl& rDM_Impl )
if ( xParagraph.is() )
{
xParagraph->setPropertyValue("ParaTopMargin",
- uno::makeAny(static_cast<sal_Int32>(0)));
+ uno::Any(static_cast<sal_Int32>(0)));
xParagraph->setPropertyValue("ParaBottomMargin",
- uno::makeAny(static_cast<sal_Int32>(0)));
+ uno::Any(static_cast<sal_Int32>(0)));
}
}