summaryrefslogtreecommitdiff
path: root/svtools/source/svhtml
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2022-05-03 20:06:37 +0200
committerStephan Bergmann <sbergman@redhat.com>2022-05-03 23:18:02 +0200
commita3f4f372aa4f6a693ae8abe829a539b9d3977de1 (patch)
tree87396f6e5c4089adbdcac77c254f49117fe1ce98 /svtools/source/svhtml
parent234f87d354d3af8dfe842d8cf8c733679c3180fe (diff)
Just use Any ctor instead of makeAny in svtools
Change-Id: Ib5a86de01abd6eab2f60d76bda50fa9407286dbc Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133770 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'svtools/source/svhtml')
-rw-r--r--svtools/source/svhtml/parhtml.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/svhtml/parhtml.cxx b/svtools/source/svhtml/parhtml.cxx
index 0c6e38ee9295..c6962824b6b6 100644
--- a/svtools/source/svhtml/parhtml.cxx
+++ b/svtools/source/svhtml/parhtml.cxx
@@ -2065,7 +2065,7 @@ bool HTMLParser::ParseMetaOptionsImpl(
try {
xUDProps->addProperty(aName,
beans::PropertyAttribute::REMOVABLE,
- uno::makeAny(aContent));
+ uno::Any(aContent));
AddMetaUserDefined(aName);
bChanged = true;
} catch (uno::Exception &) {