diff options
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/i18n/textsearch.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unotools/source/i18n/textsearch.cxx b/unotools/source/i18n/textsearch.cxx index ed6e491924b6..4e94226ed194 100644 --- a/unotools/source/i18n/textsearch.cxx +++ b/unotools/source/i18n/textsearch.cxx @@ -130,9 +130,9 @@ Reference<XTextSearch> TextSearch::getXTextSearch( const SearchOptions& rPara ) rCache.xTextSearch->setOptions( rPara ); rCache.Options = rPara; } - catch ( Exception& ) + catch ( Exception& e ) { - SAL_WARN( "unotools.i18n", "TextSearch ctor: Exception caught!" ); + SAL_WARN( "unotools.i18n", "caught " << e.Message ); } return rCache.xTextSearch; } |