summaryrefslogtreecommitdiff
path: root/connectivity/source/manager
diff options
context:
space:
mode:
Diffstat (limited to 'connectivity/source/manager')
-rw-r--r--connectivity/source/manager/mdrivermanager.cxx4
-rw-r--r--connectivity/source/manager/mdrivermanager.hxx10
2 files changed, 7 insertions, 7 deletions
diff --git a/connectivity/source/manager/mdrivermanager.cxx b/connectivity/source/manager/mdrivermanager.cxx
index 787f4348d481..38175e6c2f16 100644
--- a/connectivity/source/manager/mdrivermanager.cxx
+++ b/connectivity/source/manager/mdrivermanager.cxx
@@ -27,7 +27,7 @@
#include <tools/diagnose_ex.h>
#include <comphelper/processfactory.hxx>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/supportsservice.hxx>
#include <cppuhelper/weakref.hxx>
#include <osl/diagnose.h>
@@ -56,7 +56,7 @@ void throwNoSuchElementException() throw(NoSuchElementException)
throw NoSuchElementException();
}
-class ODriverEnumeration : public ::cppu::WeakImplHelper1< XEnumeration >
+class ODriverEnumeration : public ::cppu::WeakImplHelper< XEnumeration >
{
friend class OSDBCDriverManager;
diff --git a/connectivity/source/manager/mdrivermanager.hxx b/connectivity/source/manager/mdrivermanager.hxx
index 0f40800d2250..3aa5b57e1292 100644
--- a/connectivity/source/manager/mdrivermanager.hxx
+++ b/connectivity/source/manager/mdrivermanager.hxx
@@ -32,7 +32,7 @@
#include <com/sun/star/sdbc/XDriverAccess.hpp>
#include <com/sun/star/lang/XSingleComponentFactory.hpp>
-#include <cppuhelper/implbase3.hxx>
+#include <cppuhelper/implbase.hxx>
#include <comphelper/logging.hxx>
#include <osl/mutex.hxx>
#include <connectivity/DriversConfig.hxx>
@@ -52,10 +52,10 @@ namespace drivermanager
// OSDBCDriverManager - the one-instance service for managing SDBC drivers
- typedef ::cppu::WeakImplHelper3 < ::com::sun::star::sdbc::XDriverManager2
- , ::com::sun::star::lang::XServiceInfo
- , ::com::sun::star::uno::XNamingService
- > OSDBCDriverManager_Base;
+ typedef ::cppu::WeakImplHelper< ::com::sun::star::sdbc::XDriverManager2
+ , ::com::sun::star::lang::XServiceInfo
+ , ::com::sun::star::uno::XNamingService
+ > OSDBCDriverManager_Base;
class OSDBCDriverManager : public OSDBCDriverManager_Base
{