sc/source/core/data/table6.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit eea70492fb19b2dbd6edc0c37a2b0ed81b3ead5c Author: Julien Nabet <[email protected]> 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 <[email protected]> Reviewed-by: Julien Nabet <[email protected]> (cherry picked from commit 71f0e4e5e2efee05bccf13698752e84f5059db5f) Reviewed-on: https://gerrit.libreoffice.org/20105 Reviewed-by: Eike Rathke <[email protected]> Tested-by: Eike Rathke <[email protected]> diff --git a/sc/source/core/data/table6.cxx b/sc/source/core/data/table6.cxx index 3c24c8f..e679b18 100644 --- a/sc/source/core/data/table6.cxx +++ b/sc/source/core/data/table6.cxx @@ -371,7 +371,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)) _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
