[Libreoffice-commits] core.git: sc/source
Noel Grandin
noel.grandin at collabora.co.uk
Thu May 24 14:29:34 UTC 2018
sc/source/core/data/document.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 47d53d6929d449b0b53dc73eddf29fe9c18fb49e
Author: Noel Grandin <noel.grandin at collabora.co.uk>
Date: Thu May 24 14:41:31 2018 +0200
this should be a ref
mistake in commit
commit f6063153db8951ca21ac3a2e36973f1d73eda4d1
tdf#117706 Multi-select copying rows between sheets broken
noticed by erack
Change-Id: Ia5ed3726c8f02750eec3551f7dd908120edb2553
Reviewed-on: https://gerrit.libreoffice.org/54765
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/sc/source/core/data/document.cxx b/sc/source/core/data/document.cxx
index 9335bb31957e..ad3c6252965c 100644
--- a/sc/source/core/data/document.cxx
+++ b/sc/source/core/data/document.cxx
@@ -3133,7 +3133,7 @@ void ScDocument::GetClipArea(SCCOL& nClipX, SCROW& nClipY, bool bIncludeFiltered
SCROW nEndRow = rRange.aEnd.Row();
for ( size_t i = 1, n = rClipRanges.size(); i < n; ++i )
{
- ScRange const rRange2 = rClipRanges[ i ];
+ ScRange const & rRange2 = rClipRanges[ i ];
if (rRange2.aStart.Col() < nStartCol)
nStartCol = rRange2.aStart.Col();
if (rRange2.aStart.Row() < nStartRow)
More information about the Libreoffice-commits
mailing list