sw/inc/docstyle.hxx | 2 +- sw/source/uibase/app/docstyle.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit 9cfed79cc1eb6182a807dafec796c0423d6003d6 Author: Maxim Monastirsky <momonas...@gmail.com> AuthorDate: Wed Jun 21 10:10:03 2023 +0300 Commit: Maxim Monastirsky <momonas...@gmail.com> CommitDate: Fri Jun 23 08:30:51 2023 +0200 This can be const Change-Id: Ie69b8a926c20d1923c4e1ad580838f1b57bbd3f8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/153480 Tested-by: Jenkins Reviewed-by: Maxim Monastirsky <momonas...@gmail.com> diff --git a/sw/inc/docstyle.hxx b/sw/inc/docstyle.hxx index 82b33adf4efd..7d0a07de2dc8 100644 --- a/sw/inc/docstyle.hxx +++ b/sw/inc/docstyle.hxx @@ -181,7 +181,7 @@ class SwStyleSheetIterator final : public SfxStyleSheetIterator, public SfxListe sal_uInt32 m_nLastPos; bool m_bFirstCalled; - bool IsUsedInComments(const OUString& rName); + bool IsUsedInComments(const OUString& rName) const; void AppendStyleList(const std::vector<OUString>& rLst, bool bUsed, bool bTestHidden, diff --git a/sw/source/uibase/app/docstyle.cxx b/sw/source/uibase/app/docstyle.cxx index d43d5f652ff1..8f8e9eb94c19 100644 --- a/sw/source/uibase/app/docstyle.cxx +++ b/sw/source/uibase/app/docstyle.cxx @@ -3409,7 +3409,7 @@ void SwStyleSheetIterator::AppendStyleList(const std::vector<OUString>& rList, } } -bool SwStyleSheetIterator::IsUsedInComments(const OUString& rName) +bool SwStyleSheetIterator::IsUsedInComments(const OUString& rName) const { auto pPool = static_cast<const SwDocStyleSheetPool*>(pBasePool)->GetEEStyleSheetPool(); SfxStyleSheetIterator aIter(pPool, GetSearchFamily(), SfxStyleSearchBits::Used);