summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2009-12-03 17:03:21 +0100
committerKurt Zenker <kz@openoffice.org>2009-12-03 17:03:21 +0100
commitd89afea42e33bb771cd9a31fbdc71b94ba4d8679 (patch)
treea901cea8d0e2825fa3297ad8a83daa05aa3a32c9
parent1fe19eda74b662bdb760499ca526f7cd7856c399 (diff)
masterfix: #i107405# fixed compiling testtools on wntmsci12 non-pro
Notes
split repo tag: ure_ooo/DEV300_m67
-rw-r--r--cppuhelper/source/tdmgr.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/cppuhelper/source/tdmgr.cxx b/cppuhelper/source/tdmgr.cxx
index 306ace09d592..6f2aa70ea2d5 100644
--- a/cppuhelper/source/tdmgr.cxx
+++ b/cppuhelper/source/tdmgr.cxx
@@ -688,17 +688,17 @@ static void SAL_CALL typelib_callback(
catch (container::NoSuchElementException & exc)
{
(void) exc; // avoid warning about unused variable
- OSL_ENSURE(
- 0, OUStringToOString(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "typelibrary type not available: ") ) +
+ OSL_TRACE(
+ "typelibrary type not available: %s",
+ OUStringToOString(
exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
}
catch (Exception & exc)
{
(void) exc; // avoid warning about unused variable
- OSL_ENSURE(
- 0, OUStringToOString(
+ OSL_TRACE(
+ "%s",
+ OUStringToOString(
exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
}
}