diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2018-12-26 20:57:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-12-26 21:43:06 +0100 |
commit | d080cd838c7ab182e70ed5e8c1deff10b2306f24 (patch) | |
tree | b398c673dcc8989c313e3054231c658fcc01a3b7 /sc | |
parent | 1141fc3247bf8cf901af3f9c0194cbb2621ff707 (diff) |
tdf#122331 Autofilter disappeared after export to XLSX
regression from
commit c135f51b050dfa7ef095fe8a5b73cde37219a8dd
loplugin:returnconstant in XclExpAutofilter
Change-Id: Iea7ac925aff47699292b4c3d758e99cd2d081560
Reviewed-on: https://gerrit.libreoffice.org/65625
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/filter/excel/excrecds.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/filter/excel/excrecds.cxx b/sc/source/filter/excel/excrecds.cxx index 093cfeb254e3..1ddf17d08f85 100644 --- a/sc/source/filter/excel/excrecds.cxx +++ b/sc/source/filter/excel/excrecds.cxx @@ -666,7 +666,7 @@ bool XclExpAutofilter::AddEntry( const ScQueryEntry& rEntry ) if (GetOutput() != EXC_OUTPUT_BINARY && rItems.size() > 1) { AddMultiValueEntry(rEntry); - return true; + return false; } bool bConflict = false; |