summaryrefslogtreecommitdiff
path: root/io/source/acceptor/acc_socket.cxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-19 10:15:06 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-19 07:48:50 +0000
commite00d41f76d6cae3a93c112117af01287eb003e0e (patch)
tree7aaa27f9051ae58fc0aea9d094b19a59a37e0641 /io/source/acceptor/acc_socket.cxx
parentb83c4ea54c24e2ef8bfa899e3ba10c413bb0aa4a (diff)
io: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: Iad03db6b729a785ab8b29a69943fa45f5a36b21b Reviewed-on: https://gerrit.libreoffice.org/17849 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'io/source/acceptor/acc_socket.cxx')
-rw-r--r--io/source/acceptor/acc_socket.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx
index aaecf3cc72d6..103b1dd40b07 100644
--- a/io/source/acceptor/acc_socket.cxx
+++ b/io/source/acceptor/acc_socket.cxx
@@ -27,7 +27,7 @@
#include <com/sun/star/connection/XConnectionBroadcaster.hpp>
#include <com/sun/star/connection/ConnectionSetupException.hpp>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
using namespace ::osl;
using namespace ::cppu;
@@ -63,7 +63,7 @@ namespace io_acceptor {
XStreamListener_hash_set;
- class SocketConnection : public ::cppu::WeakImplHelper2<
+ class SocketConnection : public ::cppu::WeakImplHelper<
::com::sun::star::connection::XConnection,
::com::sun::star::connection::XConnectionBroadcaster>