lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx | 2 +- sw/source/uibase/uiview/view2.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit a359f145933e60d89f910248e8dc0e7e16834376 Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Jan 1 23:45:42 2026 +0100 Commit: Taichi Haradaguchi <[email protected]> CommitDate: Sun Jan 4 10:19:05 2026 +0100 Fix typo Change-Id: I37e77564141afae93522dff29a188aa9cde9446b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196407 Reviewed-by: Taichi Haradaguchi <[email protected]> Tested-by: Jenkins diff --git a/sw/source/uibase/uiview/view2.cxx b/sw/source/uibase/uiview/view2.cxx index b36157e7663f..333698ee76aa 100644 --- a/sw/source/uibase/uiview/view2.cxx +++ b/sw/source/uibase/uiview/view2.cxx @@ -1754,7 +1754,7 @@ void SwView::Execute(SfxRequest &rReq) for (size_t i = 0, nSize = vLevelOutlineNodes.size(); i < nSize; i++) { // Find the position that the sorted node is at in the unsorted vector. - // This is the postition of the node in the unsorted vector that is used for the start of + // This is the position of the node in the unsorted vector that is used for the start of // the range of nodes to be moved in this iteration. size_t j = 0; for (; j < nSize; j++) commit 7ddf75c1712f265f0758e4a32d0f9cc8f58ee7fd Author: Andrea Gelmini <[email protected]> AuthorDate: Thu Jan 1 23:45:40 2026 +0100 Commit: Taichi Haradaguchi <[email protected]> CommitDate: Sun Jan 4 10:18:55 2026 +0100 Fix typo Change-Id: Iffb54d05c801c67a4e33ae86086e10f12086b07d Reviewed-on: https://gerrit.libreoffice.org/c/core/+/196406 Reviewed-by: Taichi Haradaguchi <[email protected]> Tested-by: Jenkins diff --git a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx index 4d6d4b1e6719..7436455fadb0 100644 --- a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx +++ b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx @@ -469,7 +469,7 @@ Reference< XHyphenatedWord > SAL_CALL Hyphenator::hyphenate( const OUString& aWo // if minCompoundLead > 2 (default value: less than n=minCompoundLead character distance) // or always skip hyphenation inside compound constituents, if minCompoundLead == 0, // also skip hyphenation inside compound constituents right before constituent boundaries in compound words - // or always skip hyphenation inside compound consituents, if minCompoundTrail == 0 + // or always skip hyphenation inside compound constituents, if minCompoundTrail == 0 // if both minCompoundLead and minCompoundTrail == 0, don't hyphenate inside suffixes, too if ( bCompoundHyphenation && (nCompoundHyphenationPos > -1 || minCompoundLead == 0 || minCompoundTrail > 2 || minCompoundTrail == 0 ) && // check minimal distance from the left constituent boundary
