sw/source/uibase/utlui/content.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit 5d33e84d4ca6699fd6275a71d02362a8f875375b Author: Andrea Gelmini <[email protected]> AuthorDate: Fri Dec 19 09:51:02 2025 +0100 Commit: Julien Nabet <[email protected]> CommitDate: Fri Dec 19 19:37:30 2025 +0100 Fix typo Change-Id: I6ff1d1e71cabec5a02c32a693cd53385649bb3b9 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/195880 Tested-by: Jenkins Reviewed-by: Julien Nabet <[email protected]> diff --git a/sw/source/uibase/utlui/content.cxx b/sw/source/uibase/utlui/content.cxx index f8ffcf017266..b4193933a62d 100644 --- a/sw/source/uibase/utlui/content.cxx +++ b/sw/source/uibase/utlui/content.cxx @@ -1005,7 +1005,7 @@ void SwContentType::FillMemberList(bool* pbContentChanged) // INetAttrs SwGetINetAttrs aArr; - // Fill aArr using a modified verision of SwEditShell::GetINetAttrs + // Fill aArr using a modified version of SwEditShell::GetINetAttrs const SwCharFormats* pFormats = m_pWrtShell->GetDoc()->GetCharFormats(); for (auto n = pFormats->size(); 1 < n;) { @@ -1044,7 +1044,7 @@ void SwContentType::FillMemberList(bool* pbContentChanged) INetURLObject::DecodeMechanism::Unambiguous), &r.rINetAttr, 0)); - // visiblity + // visibility const SwTextNode* pNode = &(r.rINetAttr.GetTextNode()); lcl_MaybeSetInvisible(m_pWrtShell, pCnt.get(), pNode); @@ -1111,7 +1111,7 @@ void SwContentType::FillMemberList(bool* pbContentChanged) INetURLObject::DecodeMechanism::Unambiguous), &p->rINetAttr, ++n); - // visiblity + // visibility const SwTextNode* pNode = &(p->rINetAttr.GetTextNode()); lcl_MaybeSetInvisible(m_pWrtShell, pCnt.get(), pNode); @@ -1131,7 +1131,7 @@ void SwContentType::FillMemberList(bool* pbContentChanged) SwContent* pCnt = new SwTOXBaseContent(this, sTOXNm.toString(), m_bAlphabeticSort ? 0 : nTox, *pBase); - // visiblity + // visibility const SwContentNode* pNode = nullptr; const SwSectionNode* pSectionNd = static_cast<const SwTOXBaseSection*>(pBase)->GetFormat()->GetSectionNode();
