From a7c9980a4a6bb1f547c0c4a7b554ac9afe7b25fc Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Mon, 7 Feb 2022 20:27:56 +0100 Subject: Simplify sequence of PropertyValue in linguisting/reportdesign/sc/sfx2 Change-Id: Icd19a46f59e7b4e9ef4062354c5d066382ea8ade Reviewed-on: https://gerrit.libreoffice.org/c/core/+/129644 Tested-by: Jenkins Reviewed-by: Julien Nabet --- linguistic/source/convdicxml.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'linguistic') diff --git a/linguistic/source/convdicxml.cxx b/linguistic/source/convdicxml.cxx index 46b5ec69d320..c8a09997fd7e 100644 --- a/linguistic/source/convdicxml.cxx +++ b/linguistic/source/convdicxml.cxx @@ -248,8 +248,7 @@ bool ConvDicXMLExport::Export() { uno::Reference< document::XExporter > xExporter( this ); uno::Reference< document::XFilter > xFilter( xExporter, UNO_QUERY ); - uno::Sequence< beans::PropertyValue > aProps(0); - xFilter->filter( aProps ); // calls exportDoc implicitly + xFilter->filter( {} ); // calls exportDoc implicitly return bSuccess; } -- cgit