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@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin 2018-05-24 14:41:31 +02:00
parent 68f182066a
commit 47d53d6929

View File

@ -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)