summaryrefslogtreecommitdiff
path: root/mysqlc/source/mysqlc_connection.hxx
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-22 16:55:44 +0900
committerCaolán McNamara <caolanm@redhat.com>2015-08-22 15:53:18 +0000
commit7fa5f876fddfd4baeff01d74d26cbf1dc4607d18 (patch)
tree9d74f9df821e024ecd367de0ab3be0a9e40822fa /mysqlc/source/mysqlc_connection.hxx
parent3230c8cf1cf2dc486f038d369e7f4f44ffd6b0a7 (diff)
mysqlc: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: If0eccdcb56f8196db5eea539eb54dd145ac57a8d Reviewed-on: https://gerrit.libreoffice.org/17918 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'mysqlc/source/mysqlc_connection.hxx')
-rw-r--r--mysqlc/source/mysqlc_connection.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysqlc/source/mysqlc_connection.hxx b/mysqlc/source/mysqlc_connection.hxx
index aeb968693f7e..2700c6728c3b 100644
--- a/mysqlc/source/mysqlc_connection.hxx
+++ b/mysqlc/source/mysqlc_connection.hxx
@@ -38,7 +38,7 @@
#include <cppconn/driver.h>
-#include <cppuhelper/compbase3.hxx>
+#include <cppuhelper/compbase.hxx>
#include <cppuhelper/weakref.hxx>
#include <rtl/string.hxx>
@@ -65,7 +65,7 @@ namespace connectivity
typedef ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameAccess > my_XNameAccessRef;
typedef ::com::sun::star::uno::Reference< ::com::sun::star::sdbc::XDatabaseMetaData > my_XDatabaseMetaDataRef;
- typedef ::cppu::WeakComponentImplHelper3< ::com::sun::star::sdbc::XConnection,
+ typedef ::cppu::WeakComponentImplHelper< ::com::sun::star::sdbc::XConnection,
::com::sun::star::sdbc::XWarningsSupplier,
::com::sun::star::lang::XServiceInfo
> OMetaConnection_BASE;