summaryrefslogtreecommitdiff
path: root/cppuhelper/source/propshlp.cxx
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-10-22 21:58:03 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-10-23 10:44:09 +0200
commit1ed2c24a6e638ad7793c46427e4c49e42d435239 (patch)
treec1da9eb5d79baea4eb1e3bbf87e11407d8894076 /cppuhelper/source/propshlp.cxx
parentcd7c0c6adfff3509630fda21d483c2cf5d76d275 (diff)
remove RTL_CONSTASCII_(U)STRINGPARAM
Change-Id: I0bce921bfc7102b9a33b1c87eee3ddec0ebaed7b Signed-off-by: Stephan Bergmann <sbergman@redhat.com>, with one little typo fix
Diffstat (limited to 'cppuhelper/source/propshlp.cxx')
-rw-r--r--cppuhelper/source/propshlp.cxx22
1 files changed, 3 insertions, 19 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx
index 4b45c54ef04e..f0e35f0ff6aa 100644
--- a/cppuhelper/source/propshlp.cxx
+++ b/cppuhelper/source/propshlp.cxx
@@ -34,7 +34,6 @@ using namespace com::sun::star::lang;
using namespace cppu;
using ::rtl::OUString;
-using ::rtl::OUStringToOString;
namespace cppu {
@@ -725,12 +724,7 @@ void OPropertySetHelper::fire
}
catch (RuntimeException & exc)
{
- OSL_TRACE(
- OUStringToOString(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "caught RuntimeException while "
- "firing listeners: ") ) +
- exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
+ SAL_INFO("cppuhelper", "caught RuntimeException while firing listeners: " << exc.Message);
if (! bIgnoreRuntimeExceptionsWhileFiring)
throw;
}
@@ -782,12 +776,7 @@ void OPropertySetHelper::fire
}
catch (RuntimeException & exc)
{
- OSL_TRACE(
- OUStringToOString(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "caught RuntimeException while "
- "firing listeners: ") ) +
- exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
+ SAL_INFO("cppuhelper", "caught RuntimeException while firing listeners: " << exc.Message);
if (! bIgnoreRuntimeExceptionsWhileFiring)
throw;
}
@@ -832,12 +821,7 @@ void OPropertySetHelper::fire
}
catch (RuntimeException & exc)
{
- OSL_TRACE(
- OUStringToOString(
- OUString( RTL_CONSTASCII_USTRINGPARAM(
- "caught RuntimeException while "
- "firing listeners: ") ) +
- exc.Message, RTL_TEXTENCODING_UTF8 ).getStr() );
+ SAL_INFO("cppuhelper", "caught RuntimeException while firing listeners: " << exc.Message);
if (! bIgnoreRuntimeExceptionsWhileFiring)
throw;
}