diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-12 15:10:16 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-14 11:11:10 +0200 |
commit | 9e1d98fec2884e4c401aa0d5396612aa01773dc8 (patch) | |
tree | 1264e251a435c4d16c64f8b14efbbf825aee1827 /io/source | |
parent | 371a535afbccd1cc405117ad5529fc980e041e68 (diff) |
loplugin: defaultparams
Change-Id: I320eb6149793689c496b14090e8e0243397d01ba
Diffstat (limited to 'io/source')
-rw-r--r-- | io/source/acceptor/acc_pipe.cxx | 3 | ||||
-rw-r--r-- | io/source/acceptor/acc_socket.cxx | 3 | ||||
-rw-r--r-- | io/source/connector/ctr_pipe.cxx | 3 | ||||
-rw-r--r-- | io/source/connector/ctr_socket.cxx | 3 |
4 files changed, 4 insertions, 8 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx index 28a7cd285925..1265d0e8b498 100644 --- a/io/source/acceptor/acc_pipe.cxx +++ b/io/source/acceptor/acc_pipe.cxx @@ -75,8 +75,7 @@ namespace io_acceptor m_sDescription += ",uniqueValue="; m_sDescription += OUString::number( sal::static_int_cast<sal_Int64 >( - reinterpret_cast< sal_IntPtr >(&m_pipe)), - 10 ); + reinterpret_cast< sal_IntPtr >(&m_pipe)) ); } PipeConnection::~PipeConnection() diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx index 5e374622bd35..aaecf3cc72d6 100644 --- a/io/source/acceptor/acc_socket.cxx +++ b/io/source/acceptor/acc_socket.cxx @@ -166,8 +166,7 @@ namespace io_acceptor { m_sDescription += ",uniqueValue=" ; m_sDescription += OUString::number( sal::static_int_cast< sal_Int64 >( - reinterpret_cast< sal_IntPtr >(&m_socket)), - 10 ); + reinterpret_cast< sal_IntPtr >(&m_socket)) ); } SocketConnection::~SocketConnection() diff --git a/io/source/connector/ctr_pipe.cxx b/io/source/connector/ctr_pipe.cxx index 0829b0f63e49..f9b19ea79695 100644 --- a/io/source/connector/ctr_pipe.cxx +++ b/io/source/connector/ctr_pipe.cxx @@ -36,8 +36,7 @@ namespace stoc_connector { m_sDescription += ",uniqueValue="; m_sDescription += OUString::number( sal::static_int_cast< sal_Int64 >( - reinterpret_cast< sal_IntPtr >(&m_pipe)), - 10 ); + reinterpret_cast< sal_IntPtr >(&m_pipe)) ); } PipeConnection::~PipeConnection() diff --git a/io/source/connector/ctr_socket.cxx b/io/source/connector/ctr_socket.cxx index 76dcb317be8c..c23c8969b026 100644 --- a/io/source/connector/ctr_socket.cxx +++ b/io/source/connector/ctr_socket.cxx @@ -87,8 +87,7 @@ namespace stoc_connector { m_sDescription += ",uniqueValue="; m_sDescription += OUString::number( sal::static_int_cast< sal_Int64 >( - reinterpret_cast< sal_IntPtr >(&m_socket)), - 10 ); + reinterpret_cast< sal_IntPtr >(&m_socket)) ); } SocketConnection::~SocketConnection() |