sc/source/filter/oox/sheetdatabuffer.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit b77f1d103cd3a800eef0b71456fdc7c28799af65 Author: David Hashe <m...@dhashe.com> AuthorDate: Mon May 26 15:19:12 2025 -0400 Commit: Eike Rathke <er...@redhat.com> CommitDate: Tue May 27 11:58:39 2025 +0200 tdf#48140 Fixup variable name for an rtl::Reference Very minor, non-functional followup change to 277364ed05e0340ac0affbe7743e209d4d36c0a1 I had named an rtl::Reference<ScCellRangeObj> with rCellRangeObj when it is preferred to use xCellRangeObj. Change-Id: I6950fd3e40774f4c2a58b169116a30cfd3cccc96 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/185867 Tested-by: Jenkins Reviewed-by: Eike Rathke <er...@redhat.com> diff --git a/sc/source/filter/oox/sheetdatabuffer.cxx b/sc/source/filter/oox/sheetdatabuffer.cxx index 2f6511ca9ddb..03eab737d104 100644 --- a/sc/source/filter/oox/sheetdatabuffer.cxx +++ b/sc/source/filter/oox/sheetdatabuffer.cxx @@ -634,8 +634,8 @@ ApiTokenSequence SheetDataBuffer::resolveSharedFormula( const ScAddress& rAddr ) void SheetDataBuffer::finalizeArrayFormula( const ScRange& rRange, const ApiTokenSequence& rTokens ) { - rtl::Reference<ScCellRangeObj> rCellRangeObj(new ScCellRangeObj(getScDocument().GetDocumentShell(), rRange)); - rCellRangeObj->setArrayTokens(rTokens); + rtl::Reference<ScCellRangeObj> xCellRangeObj(new ScCellRangeObj(getScDocument().GetDocumentShell(), rRange)); + xCellRangeObj->setArrayTokens(rTokens); } void SheetDataBuffer::finalizeTableOperation( const ScRange& rRange, const DataTableModel& rModel )