[Libreoffice-commits] core.git: sc/source
Attila Szűcs (via logerrit)
logerrit at kemper.freedesktop.org
Tue Sep 29 22:39:25 UTC 2020
sc/source/core/data/documen3.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 7f6d5c9613774815d2e4b0493d47abd3443c25e2
Author: Attila Szűcs <szucs.attila3 at nisz.hu>
AuthorDate: Tue Sep 29 11:37:58 2020 +0200
Commit: Eike Rathke <erack at redhat.com>
CommitDate: Wed Sep 30 00:38:46 2020 +0200
Clean-up of commit: I95d394c5432d22805a761b76219f656fad3feae1
Renamed a wrongly named variable, reported here:
https://gerrit.libreoffice.org/c/core/+/102173/4/sc/source/core/data/documen3.cxx#1140
Change-Id: I42ef65df78c5ad04e2c2875cf47d241a280892e6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103605
Tested-by: Jenkins
Reviewed-by: Eike Rathke <erack at redhat.com>
diff --git a/sc/source/core/data/documen3.cxx b/sc/source/core/data/documen3.cxx
index 7ffd181ac502..0c5c9249ea98 100644
--- a/sc/source/core/data/documen3.cxx
+++ b/sc/source/core/data/documen3.cxx
@@ -1151,8 +1151,8 @@ void ScDocument::Fill(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, ScProg
{
PutInOrder( nCol1, nCol2 );
PutInOrder( nRow1, nRow2 );
- ScRange rRange;
- rMark.GetMarkArea(rRange);
+ ScRange aRange;
+ rMark.GetMarkArea(aRange);
SCTAB nMax = maTabs.size();
for (const auto& rTab : rMark)
{
@@ -1163,7 +1163,7 @@ void ScDocument::Fill(SCCOL nCol1, SCROW nRow1, SCCOL nCol2, SCROW nRow2, ScProg
maTabs[rTab]->Fill(nCol1, nRow1, nCol2, nRow2,
nFillCount, eFillDir, eFillCmd, eFillDateCmd,
nStepValue, nMaxValue, pProgress);
- RefreshAutoFilter(rRange.aStart.Col(), rRange.aStart.Row(), rRange.aEnd.Col(), rRange.aEnd.Row(), rTab);
+ RefreshAutoFilter(aRange.aStart.Col(), aRange.aStart.Row(), aRange.aEnd.Col(), aRange.aEnd.Row(), rTab);
}
}
}
More information about the Libreoffice-commits
mailing list