[Libreoffice-commits] core.git: sc/source
scito (via logerrit)
logerrit at kemper.freedesktop.org
Fri Apr 23 10:35:17 UTC 2021
sc/source/core/data/document.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 7c1e22152ed1a1837782a55fc9997f8e7801681b
Author: scito <info at scito.ch>
AuthorDate: Fri Apr 23 11:07:46 2021 +0200
Commit: Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Fri Apr 23 12:34:38 2021 +0200
tdf#95554 fix ScDocument::GetClipArea() for rows: use > instead of <
I did not write any tests, as the multi range copying to system clipboard
has another issue, see tdf#141847
Change-Id: I3af58d68370038274a07d753809fb4ceca9016f9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/114534
Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
Tested-by: Jenkins
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 05036e0ee148..108c07e03705 100755
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -3192,7 +3192,7 @@ void ScDocument::GetClipArea(SCCOL& nClipX, SCROW& nClipY, bool bIncludeFiltered
nStartRow = rRange2.aStart.Row();
if (rRange2.aEnd.Col() > nEndCol)
nEndCol = rRange2.aEnd.Col();
- if (rRange2.aEnd.Row() < nEndRow)
+ if (rRange2.aEnd.Row() > nEndRow)
nEndRow = rRange2.aEnd.Row();
}
More information about the Libreoffice-commits
mailing list