diff options
Diffstat (limited to 'i18npool/source/search')
-rw-r--r-- | i18npool/source/search/textsearch.cxx | 2 | ||||
-rw-r--r-- | i18npool/source/search/textsearch.hxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/i18npool/source/search/textsearch.cxx b/i18npool/source/search/textsearch.cxx index b6f02d285ce7..d95600d60936 100644 --- a/i18npool/source/search/textsearch.cxx +++ b/i18npool/source/search/textsearch.cxx @@ -218,7 +218,7 @@ sal_Int32 FindPosInSeq_Impl( const Sequence <sal_Int32>& rOff, sal_Int32 nPos ) return nRet; } -sal_Bool TextSearch::isCellStart(const OUString& searchStr, sal_Int32 nPos) +bool TextSearch::isCellStart(const OUString& searchStr, sal_Int32 nPos) throw( RuntimeException ) { sal_Int32 nDone; diff --git a/i18npool/source/search/textsearch.hxx b/i18npool/source/search/textsearch.hxx index ca93348ffe9d..39338e767aa6 100644 --- a/i18npool/source/search/textsearch.hxx +++ b/i18npool/source/search/textsearch.hxx @@ -111,8 +111,8 @@ class TextSearch: public cppu::WeakImplHelper2 bool IsDelimiter( const OUString& rStr, sal_Int32 nPos ) const; - sal_Bool checkCTLStart, checkCTLEnd; - sal_Bool SAL_CALL isCellStart(const OUString& searchStr, sal_Int32 nPos) + bool checkCTLStart, checkCTLEnd; + bool SAL_CALL isCellStart(const OUString& searchStr, sal_Int32 nPos) throw(::com::sun::star::uno::RuntimeException); public: |