sc/source/core/data/table2.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 97a4e4582698c74fa4fa5c2fed3cd48d4c66da8b Author: Andrea Gelmini <andrea.gelm...@gelma.net> AuthorDate: Fri Jun 9 21:13:56 2023 +0200 Commit: Adolfo Jayme Barrientos <fit...@ubuntu.com> CommitDate: Sat Jun 10 05:13:21 2023 +0200 Fix typo Change-Id: I93f8dc6746a9173847e96f1ba16e5fdc4a817ced Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152804 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fit...@ubuntu.com> diff --git a/sc/source/core/data/table2.cxx b/sc/source/core/data/table2.cxx index b35caa7459bb..ee65a31ab6bf 100644 --- a/sc/source/core/data/table2.cxx +++ b/sc/source/core/data/table2.cxx @@ -400,7 +400,7 @@ void ScTable::DeleteCol( { for (SCCOL nCol = nStartCol + nSize; nCol < aCol.size(); ++nCol) aCol[nCol].SwapCol(aCol[nCol - nSize]); - // When delete column(s), inicialize the last columns from the default attributes + // When delete column(s), initialize the last columns from the default attributes for (SCCOL nCol = aCol.size() - nSize; nCol < aCol.size(); ++nCol) aCol[nCol].Init(nCol, aCol[nCol].GetTab(), rDocument, false); }