summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk4
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 /vcl/unx/gtk4
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 'vcl/unx/gtk4')
-rw-r--r--vcl/unx/gtk4/convert3to4.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk4/convert3to4.cxx b/vcl/unx/gtk4/convert3to4.cxx
index 470b12de490a..e00009cd1cf7 100644
--- a/vcl/unx/gtk4/convert3to4.cxx
+++ b/vcl/unx/gtk4/convert3to4.cxx
@@ -1533,7 +1533,7 @@ void builder_add_from_gtk3_file(GtkBuilder* pBuilder, const OUString& rUri)
css::uno::Reference<css::beans::XPropertySet> xTempFile(css::io::TempFile::create(xContext),
css::uno::UNO_QUERY_THROW);
css::uno::Reference<css::io::XStream> xTempStream(xTempFile, css::uno::UNO_QUERY_THROW);
- xTempFile->setPropertyValue("RemoveFile", css::uno::makeAny(false));
+ xTempFile->setPropertyValue("RemoveFile", css::uno::Any(false));
// serialize it back to xml
css::uno::Reference<css::xml::sax::XSAXSerializable> xSerializer(xDocument,