diff options
author | Noel Grandin <noel@peralex.com> | 2013-11-04 14:00:40 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2013-11-11 11:21:26 +0200 |
commit | e52779d2f8722c713f72aedbf475267440d729f0 (patch) | |
tree | 0f2f15b2a7645e0b75f8057c96c90e05e1a6e7df /io/test | |
parent | e9c4ee996d5a6bf895072613ac4e488346ee5b05 (diff) |
remove unnecessary use of OUString constructor
Change-Id: Ifb220af71857ddacd64e8204fb6d3e4aad8eef71
Diffstat (limited to 'io/test')
-rw-r--r-- | io/test/stm/testfactreg.cxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/io/test/stm/testfactreg.cxx b/io/test/stm/testfactreg.cxx index bec6821bee00..2d7e9e979d0e 100644 --- a/io/test/stm/testfactreg.cxx +++ b/io/test/stm/testfactreg.cxx @@ -46,57 +46,57 @@ sal_Bool SAL_CALL component_writeInfo( Reference< XRegistryKey > xKey( reinterpret_cast< XRegistryKey * >( pRegistryKey ) ); - OUString str = OUString("/") + + OUString str = "/" + OPipeTest_getImplementationName() + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; Reference< XRegistryKey > xNewKey = xKey->createKey( str ); xNewKey->createKey( OPipeTest_getServiceName() ); - str = OUString("/") + + str = "/" + OPumpTest_getImplementationName() + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( OPumpTest_getServiceName() ); - str = OUString("/") + + str = "/" + ODataStreamTest_getImplementationName(1) + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( ODataStreamTest_getServiceName(1) ); - str = OUString("/") + + str = "/" + ODataStreamTest_getImplementationName(2) + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( ODataStreamTest_getServiceName(2) ); - str = OUString("/") + + str = "/" + OObjectStreamTest_getImplementationName(1) + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( OObjectStreamTest_getServiceName(1) ); - str = OUString("/") + + str = "/" + OObjectStreamTest_getImplementationName(2) + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( OObjectStreamTest_getServiceName(2) ); - str = OUString("/") + + str = "/" + OMarkableOutputStreamTest_getImplementationName() + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( OMarkableOutputStreamTest_getServiceName() ); - str = OUString("/") + + str = "/" + OMarkableInputStreamTest_getImplementationName() + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( OMarkableInputStreamTest_getServiceName() ); - str = OUString("/") + + str = "/" + OMyPersistObject_getImplementationName() + - OUString("/UNO/SERVICES"); + "/UNO/SERVICES"; xNewKey = xKey->createKey( str ); xNewKey->createKey( OMyPersistObject_getServiceName() ); |