diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-02-22 14:52:31 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2024-02-23 09:07:52 +0100 |
commit | 48701ac2da7e03274571565d1e24a120e380bbdd (patch) | |
tree | 654b515ad0d5d53c6c68b3507dd765505ef801bc /i18npool/source/search | |
parent | a6cdc75f98a9449fd796420170d2097e96b6e873 (diff) |
SAL_CALL is not necessary here
these are internal methods
Change-Id: I023bd2434d72913cfc1818636cd8a7345c05d1fe
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/163745
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'i18npool/source/search')
-rw-r--r-- | i18npool/source/search/textsearch.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/i18npool/source/search/textsearch.hxx b/i18npool/source/search/textsearch.hxx index 10c1d59e23a3..9fda11751d83 100644 --- a/i18npool/source/search/textsearch.hxx +++ b/i18npool/source/search/textsearch.hxx @@ -60,7 +60,7 @@ class TextSearch: public cppu::WeakImplHelper // define a function pointer for the different search methods typedef css::util::SearchResult - (SAL_CALL TextSearch::*FnSrch)( const OUString& searchStr, + (TextSearch::*FnSrch)( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); FnSrch fnForward; @@ -80,22 +80,22 @@ class TextSearch: public cppu::WeakImplHelper void MakeBackwardTab2(); sal_Int32 GetDiff( const sal_Unicode ) const; /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult NSrchFrwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult NSrchBkwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); // Members and methods for the regular expression search std::unique_ptr<icu::RegexMatcher> pRegexMatcher; /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult RESrchFrwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult RESrchBkwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); void RESrchPrepare( const css::util::SearchOptions2&); @@ -105,11 +105,11 @@ class TextSearch: public cppu::WeakImplHelper std::unique_ptr<WLevDistance> pWLD; css::uno::Reference < css::i18n::XBreakIterator > xBreak; /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult ApproxSrchFrwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult ApproxSrchBkwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); @@ -119,11 +119,11 @@ class TextSearch: public cppu::WeakImplHelper sal_uInt32 mcWildcardEscapeChar; bool mbWildcardAllowSubstring; /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult WildcardSrchFrwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); /// @throws css::uno::RuntimeException - css::util::SearchResult SAL_CALL + css::util::SearchResult WildcardSrchBkwrd( const OUString& searchStr, sal_Int32 startPos, sal_Int32 endPos ); |