sc/source/core/tool/compiler.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 2af8bfc7870750f3e188ede89a679dcd5f61b224 Author: Andrea Gelmini <[email protected]> AuthorDate: Fri Feb 27 15:02:20 2026 +0100 Commit: David Gilbert <[email protected]> CommitDate: Sun Mar 1 18:22:22 2026 +0100 Fix typo Change-Id: If74ee417cbaf7967a1e27a75a0324a6d0685dee4 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200629 Tested-by: Jenkins Reviewed-by: David Gilbert <[email protected]> diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index 07c6c9b5b6a9..169c46614714 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -2035,7 +2035,7 @@ static bool lcl_TabContainsReference(const OUString& rString) return true; } - // Check for A1 style refernce + // Check for A1 style reference while (nPos < nLen && rtl::isAsciiAlpha(static_cast<unsigned char>(rString[nPos]))) nPos++;
