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.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/ure/source/uretest/cpptest.cc b/ure/source/uretest/cpptest.cc
index b037fdceebfb..3545a88b5f07 100644
--- a/ure/source/uretest/cpptest.cc
+++ b/ure/source/uretest/cpptest.cc
@@ -43,7 +43,7 @@ public:
virtual void SAL_CALL throwException() {
throw test::types::TestException(
- rtl::OUString("test"),
+ OUString("test"),
static_cast< cppu::OWeakObject * >(this));
}
@@ -62,13 +62,13 @@ css::uno::Reference< css::uno::XInterface > create(
return static_cast< cppu::OWeakObject * >(new Service);
}
-rtl::OUString getImplementationName() {
- return rtl::OUString("test.cpp.cpptest.Component");
+OUString getImplementationName() {
+ return OUString("test.cpp.cpptest.Component");
}
-css::uno::Sequence< rtl::OUString > getSupportedServiceNames() {
- rtl::OUString s("test.types.CppTest");
- return css::uno::Sequence< rtl::OUString >(&s, 1);
+css::uno::Sequence< OUString > getSupportedServiceNames() {
+ OUString s("test.types.CppTest");
+ return css::uno::Sequence< OUString >(&s, 1);
}
}