summaryrefslogtreecommitdiff
path: root/testtools/source
diff options
context:
space:
mode:
authorChr. Rossmanith <ChrRossmanith@gmx.de>2013-03-19 21:15:00 +0100
committerNoel Power <noel.power@suse.com>2013-03-20 10:28:58 +0000
commitb2f8318dbda8a09fa312663d14fcaf057ee5069d (patch)
tree1f06862395db47ed52450a0cb5425cc9463f5e27 /testtools/source
parent04032bd6062638f6945e3911a491fa311404c507 (diff)
simplify OUString assignments
Change-Id: Ieffd80aa84c9a041785bb81b3a904a32d00cb2bb Reviewed-on: https://gerrit.libreoffice.org/2863 Reviewed-by: Noel Power <noel.power@suse.com> Tested-by: Noel Power <noel.power@suse.com>
Diffstat (limited to 'testtools/source')
-rw-r--r--testtools/source/bridgetest/constructors.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/testtools/source/bridgetest/constructors.cxx b/testtools/source/bridgetest/constructors.cxx
index a4cf91077601..8627e2932a6e 100644
--- a/testtools/source/bridgetest/constructors.cxx
+++ b/testtools/source/bridgetest/constructors.cxx
@@ -450,9 +450,9 @@ css::uno::Reference< css::uno::XInterface > SAL_CALL create(
"comp.test.testtools.bridgetest.Constructors");
}
-css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() {
- css::uno::Sequence< ::rtl::OUString > s(1);
- s[0] = ::rtl::OUString("test.testtools.bridgetest.Constructors");
+css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() {
+ css::uno::Sequence< OUString > s(1);
+ s[0] = "test.testtools.bridgetest.Constructors";
return s;
}
@@ -469,9 +469,9 @@ css::uno::Reference< css::uno::XInterface > SAL_CALL create2(
"comp.test.testtools.bridgetest.Constructors2");
}
-css::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames2() {
- css::uno::Sequence< ::rtl::OUString > s(1);
- s[0] = ::rtl::OUString("test.testtools.bridgetest.Constructors2");
+css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames2() {
+ css::uno::Sequence< OUString > s(1);
+ s[0] = "test.testtools.bridgetest.Constructors2";
return s;
}