summaryrefslogtreecommitdiff
path: root/linguistic
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2022-02-07 20:27:56 +0100
committerJulien Nabet <serval2412@yahoo.fr>2022-02-08 07:04:02 +0100
commita7c9980a4a6bb1f547c0c4a7b554ac9afe7b25fc (patch)
tree831d927883bb1ff687da6a210098ed5157091899 /linguistic
parent6a031514a922dd3c53d96f4d4980e7f8ee598507 (diff)
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 <serval2412@yahoo.fr>
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/convdicxml.cxx3
1 files changed, 1 insertions, 2 deletions
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;
}