diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-19 14:16:55 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2013-03-19 14:18:10 +0100 |
commit | 5bb4a2ba1d8a6b98720868786e552aa8fd2a22eb (patch) | |
tree | f891d796fa21c5bfb941eaa4a3f0c05a7e179cc6 /io | |
parent | 2633b249ea6921645c57ab24a1c9ad0c8e61e144 (diff) |
further OUString cleanup
Change-Id: I19954ee5976cb881a5fe73a889c8e04a19b14eb6
Diffstat (limited to 'io')
-rw-r--r-- | io/source/acceptor/acc_pipe.cxx | 2 | ||||
-rw-r--r-- | io/source/acceptor/acc_socket.cxx | 2 | ||||
-rw-r--r-- | io/test/testcomponent.cxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx index a8b8856497b7..b2bc9a842174 100644 --- a/io/source/acceptor/acc_pipe.cxx +++ b/io/source/acceptor/acc_pipe.cxx @@ -73,7 +73,7 @@ namespace io_acceptor g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt ); // make it unique - m_sDescription += OUString(",uniqueValue="); + m_sDescription += ",uniqueValue="; m_sDescription += OUString::valueOf( sal::static_int_cast<sal_Int64 >( reinterpret_cast< sal_IntPtr >(&m_pipe)), diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx index 1e5081405b60..a5c7e20737e4 100644 --- a/io/source/acceptor/acc_socket.cxx +++ b/io/source/acceptor/acc_socket.cxx @@ -164,7 +164,7 @@ namespace io_acceptor { { g_moduleCount.modCnt.acquire( &g_moduleCount.modCnt ); // make it unique - m_sDescription += OUString( ",uniqueValue=" ) ; + m_sDescription += ",uniqueValue=" ; m_sDescription += OUString::valueOf( sal::static_int_cast< sal_Int64 >( reinterpret_cast< sal_IntPtr >(&m_socket)), diff --git a/io/test/testcomponent.cxx b/io/test/testcomponent.cxx index 05be118b8b84..9780266014ab 100644 --- a/io/test/testcomponent.cxx +++ b/io/test/testcomponent.cxx @@ -102,7 +102,7 @@ int main (int argc, char **argv) #else OUString aDllName("lib"); aDllName += OStringToOUString( sTestName , RTL_TEXTENCODING_ASCII_US ); - aDllName += OUString(".so"); + aDllName += ".so"; #endif xReg->registerImplementation( |