summaryrefslogtreecommitdiff
path: root/ure
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-04-11 11:54:20 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-04-11 14:24:07 +0200
commit0ea1711e983775beb13b08d05637fe88ec534f0b (patch)
treeb0427eb6634f1ebb3c1abc2722d3b22cdf7f7fbb /ure
parentca7cbe24cc497384d9b4f7d19d1fff3c84e3ea19 (diff)
Missing rtl:: namespace
Change-Id: I6088dc1c9d9afaa031231ea0c9f104a92ce41658
Diffstat (limited to 'ure')
-rw-r--r--ure/source/uretest/cppmain.cc4
-rw-r--r--ure/source/uretest/cppserver.cc12
-rw-r--r--ure/source/uretest/cpptest.cc14
3 files changed, 15 insertions, 15 deletions
diff --git a/ure/source/uretest/cppmain.cc b/ure/source/uretest/cppmain.cc
index b9acbef9c259..c0e368efbd0e 100644
--- a/ure/source/uretest/cppmain.cc
+++ b/ure/source/uretest/cppmain.cc
@@ -199,8 +199,8 @@ css::uno::Reference< css::uno::XInterface > create(
}
}
-OUString getImplementationName() {
- return OUString("test.cpp.cppmain.Component");
+rtl::OUString getImplementationName() {
+ return rtl::OUString("test.cpp.cppmain.Component");
}
css::uno::Sequence< ::rtl::OUString > getSupportedServiceNames() {
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 >();
}
}
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);
}
}