summaryrefslogtreecommitdiff
path: root/ure/source/uretest/cppserver.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ure/source/uretest/cppserver.cc')
-rw-r--r--ure/source/uretest/cppserver.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/ure/source/uretest/cppserver.cc b/ure/source/uretest/cppserver.cc
index 55e094a47652..cee80d39872b 100644
--- a/ure/source/uretest/cppserver.cc
+++ b/ure/source/uretest/cppserver.cc
@@ -48,7 +48,7 @@ public:
virtual ::test::types::Data SAL_CALL getData()
throw (css::uno::RuntimeException)
{
- return ::test::types::Data(OUString("Hello"), 42);
+ return ::test::types::Data(rtl::OUString("Hello"), 42);
}
private:
@@ -68,17 +68,17 @@ 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.cppserver.Component");
+rtl::OUString getImplementationName() {
+ return rtl::OUString("test.cpp.cppserver.Component");
}
-css::uno::Sequence< OUString > getSupportedServiceNames() {
- return css::uno::Sequence< OUString >();
+css::uno::Sequence< rtl::OUString > getSupportedServiceNames() {
+ return css::uno::Sequence< rtl::OUString >();
}
}