[Libreoffice-commits] core.git: sc/source
Julien Nabet
serval2412 at yahoo.fr
Sat Nov 21 06:33:58 PST 2015
sc/source/core/data/table6.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 71f0e4e5e2efee05bccf13698752e84f5059db5f
Author: Julien Nabet <serval2412 at yahoo.fr>
Date: Fri Nov 20 00:09:36 2015 +0100
tdf#83126: Find All: Don't ignore Search Direction Rows/Col option
bAll (ie "Find All") seems a little tricky for GetBackward but not for GetRowDirection method
Change-Id: I47d2b378fb493bcdc1ad30902a3a677eedc50789
Reviewed-on: https://gerrit.libreoffice.org/20067
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
diff --git a/sc/source/core/data/table6.cxx b/sc/source/core/data/table6.cxx
index c07363c..512bbd3 100644
--- a/sc/source/core/data/table6.cxx
+++ b/sc/source/core/data/table6.cxx
@@ -378,7 +378,7 @@ bool ScTable::Search(const SvxSearchItem& rSearchItem, SCCOL& rCol, SCROW& rRow,
else
{
SCROW nLastNonFilteredRow = -1;
- if (!bAll && rSearchItem.GetRowDirection())
+ if (rSearchItem.GetRowDirection())
{
nCol++;
while (!bFound && (nRow <= nLastRow))
More information about the Libreoffice-commits
mailing list