sw/source/uibase/lingu/olmenu.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 49bee91d1378c0ad57f9661ccf3850f5b6d52d39 Author: Rashesh Padia <[email protected]> AuthorDate: Wed Aug 13 12:38:04 2025 +0530 Commit: Andras Timar <[email protected]> CommitDate: Tue Aug 19 15:25:01 2025 +0200 sw: fix: don't show "List of Ignored Words" in submenu Change-Id: I0770884eae89640d14a8ce05b315ee8880b772e5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189473 Reviewed-by: Tomaž Vajngerl <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> (cherry picked from commit a12761bee8dfb3f775e9259e41e6736f64977eed) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189921 Tested-by: Andras Timar <[email protected]> Reviewed-by: Andras Timar <[email protected]> diff --git a/sw/source/uibase/lingu/olmenu.cxx b/sw/source/uibase/lingu/olmenu.cxx index add3ac04810f..7e9aed2e04bd 100644 --- a/sw/source/uibase/lingu/olmenu.cxx +++ b/sw/source/uibase/lingu/olmenu.cxx @@ -327,7 +327,7 @@ SwSpellPopup::SwSpellPopup( for (const uno::Reference<linguistic2::XDictionary>& rDic : m_aDics) { uno::Reference< linguistic2::XDictionary > xDicTmp = rDic; - if (!xDicTmp.is() || LinguMgr::GetIgnoreAllList() == xDicTmp) + if (!xDicTmp.is() || LinguMgr::GetIgnoreAllList()->getName() == xDicTmp->getName()) continue; uno::Reference< frame::XStorable > xStor( xDicTmp, uno::UNO_QUERY );
