summaryrefslogtreecommitdiff
path: root/unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx')
-rw-r--r--unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx b/unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx
index 3265f8801e1e..f05e59d3839d 100644
--- a/unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx
+++ b/unotest/source/cpp/unoexceptionprotector/unoexceptionprotector.cxx
@@ -37,8 +37,8 @@
namespace {
// Best effort conversion:
-std::string convert(rtl::OUString const & s16) {
- rtl::OString s8(rtl::OUStringToOString(s16, osl_getThreadTextEncoding()));
+std::string convert(OUString const & s16) {
+ OString s8(OUStringToOString(s16, osl_getThreadTextEncoding()));
BOOST_STATIC_ASSERT(sizeof (sal_Int32) <= sizeof (std::string::size_type));
// ensure following cast is legitimate
return std::string(
@@ -68,7 +68,7 @@ bool Prot::protect(
context,
CppUnit::Message(
convert(
- rtl::OUString("An uncaught exception of type ")
+ OUString("An uncaught exception of type ")
+ a.getValueTypeName()),
convert(e.Message)));
}