sc/source/ui/operation/Operation.cxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-)
New commits: commit 98fbf39407feb8158ceece51c706f75888e1383b Author: Tomaž Vajngerl <[email protected]> AuthorDate: Thu Feb 19 15:20:29 2026 +0900 Commit: Miklos Vajna <[email protected]> CommitDate: Fri Feb 20 14:01:40 2026 +0100 sc: aSortRange has a worng prefix - should be rSortRange Change-Id: I9a7b5775b752d3c4a1442fbe1d79515a89f052db Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199684 Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-by: Miklos Vajna <[email protected]> diff --git a/sc/source/ui/operation/Operation.cxx b/sc/source/ui/operation/Operation.cxx index e45da8687bb6..a6fc2a546eaa 100644 --- a/sc/source/ui/operation/Operation.cxx +++ b/sc/source/ui/operation/Operation.cxx @@ -142,11 +142,11 @@ ScMarkData Operation::convertMark(ScMarkData const& rMarkData) } else { - ScRange const& aSortRange = oReorderParams->maSortRange; - nRowStart = aSortRange.aStart.Row(); - nRowEnd = aSortRange.aEnd.Row(); - nColumnStart = aSortRange.aStart.Col(); - nColumnEnd = aSortRange.aEnd.Col(); + ScRange const& rSortRange = oReorderParams->maSortRange; + nRowStart = rSortRange.aStart.Row(); + nRowEnd = rSortRange.aEnd.Row(); + nColumnStart = rSortRange.aStart.Col(); + nColumnEnd = rSortRange.aEnd.Col(); } for (SCROW nRow = nRowStart; nRow <= nRowEnd; ++nRow)
