summaryrefslogtreecommitdiff
path: root/ure/source/uretest/cpptest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ure/source/uretest/cpptest.cc')
-rw-r--r--ure/source/uretest/cpptest.cc14
1 files changed, 7 insertions, 7 deletions
diff --git a/ure/source/uretest/cpptest.cc b/ure/source/uretest/cpptest.cc
index 9fe83e45daeb..5bd200614f78 100644
--- a/ure/source/uretest/cpptest.cc
+++ b/ure/source/uretest/cpptest.cc
@@ -47,7 +47,7 @@ public:
throw (test::types::TestException, css::uno::RuntimeException)
{
throw test::types::TestException(
- OUString("test"),
+ rtl::OUString("test"),
static_cast< cppu::OWeakObject * >(this));
}
@@ -68,18 +68,18 @@ css::uno::Reference< css::uno::XInterface > create(
return static_cast< cppu::OWeakObject * >(new Service);
} catch (std::bad_alloc &) {
throw css::uno::RuntimeException(
- OUString("std::bad_alloc"),
+ rtl::OUString("std::bad_alloc"),
css::uno::Reference< css::uno::XInterface >());
}
}
-OUString getImplementationName() {
- return OUString("test.cpp.cpptest.Component");
+rtl::OUString getImplementationName() {
+ return rtl::OUString("test.cpp.cpptest.Component");
}
-css::uno::Sequence< OUString > getSupportedServiceNames() {
- OUString s("test.types.CppTest");
- return css::uno::Sequence< OUString >(&s, 1);
+css::uno::Sequence< rtl::OUString > getSupportedServiceNames() {
+ rtl::OUString s("test.types.CppTest");
+ return css::uno::Sequence< rtl::OUString >(&s, 1);
}
}