summaryrefslogtreecommitdiff
path: root/unotools/source/i18n/textsearch.cxx
diff options
context:
space:
mode:
authorMarcel Metz <mmetz@adrian-broher.net>2012-01-11 10:02:26 +0100
committerDavid Tardon <dtardon@redhat.com>2012-01-16 12:51:29 +0100
commit157d414977a6b80d2654767419fe2e406024ea04 (patch)
treea3af6d6af0aa082765c2635d75cba4079e287bed /unotools/source/i18n/textsearch.cxx
parentaad000dcef7b5c9a6fe4bad6abd4245e357b850f (diff)
Replaced DBG_ERRORFILE with SAL_INFO.
Diffstat (limited to 'unotools/source/i18n/textsearch.cxx')
-rw-r--r--unotools/source/i18n/textsearch.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/unotools/source/i18n/textsearch.cxx b/unotools/source/i18n/textsearch.cxx
index 8b9b5f38c9dc..19fe451f43a0 100644
--- a/unotools/source/i18n/textsearch.cxx
+++ b/unotools/source/i18n/textsearch.cxx
@@ -27,7 +27,6 @@
************************************************************************/
#include <i18npool/mslangid.hxx>
-#include <tools/debug.hxx>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/util/SearchFlags.hdl>
#include <com/sun/star/i18n/TransliterationModules.hpp>
@@ -133,7 +132,7 @@ Reference<XTextSearch> TextSearch::getXTextSearch( const SearchOptions& rPara )
}
catch ( Exception& )
{
- DBG_ERRORFILE( "TextSearch ctor: Exception caught!" );
+ SAL_INFO( "unotools", "TextSearch ctor: Exception caught!" );
}
return rCache.xTextSearch;
}
@@ -253,7 +252,7 @@ int TextSearch::SearchFrwrd( const String & rStr, xub_StrLen* pStart,
}
catch ( Exception& )
{
- DBG_ERRORFILE( "SearchForward: Exception caught!" );
+ SAL_INFO( "unotools", "SearchForward: Exception caught!" );
}
return nRet;
}
@@ -284,7 +283,7 @@ int TextSearch::SearchBkwrd( const String & rStr, xub_StrLen* pStart,
}
catch ( Exception& )
{
- DBG_ERRORFILE( "SearchBackward: Exception caught!" );
+ SAL_INFO( "unotools", "SearchBackward: Exception caught!" );
}
return nRet;
}