summaryrefslogtreecommitdiff
path: root/io/source/connector/connector.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/connector/connector.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/connector/connector.cxx')
-rw-r--r--io/source/connector/connector.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx
index cc79077cb1b6..0bedf4dde13e 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -22,7 +22,7 @@
#include <uno/mapping.hxx>
#include <cppuhelper/factory.hxx>
-#include <cppuhelper/implbase2.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/implementationentry.hxx>
#include <cppuhelper/supportsservice.hxx>
#include "cppuhelper/unourl.hxx"
@@ -47,7 +47,7 @@ using namespace ::com::sun::star::connection;
namespace stoc_connector
{
- class OConnector : public WeakImplHelper2< XConnector, XServiceInfo >
+ class OConnector : public WeakImplHelper< XConnector, XServiceInfo >
{
Reference< XMultiComponentFactory > _xSMgr;
Reference< XComponentContext > _xCtx;