diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-13 11:21:57 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-17 07:17:37 +0000 |
commit | 1a24285dd55c5c85272decc00dc8f93c9a917b8f (patch) | |
tree | 0ac843f84ace01842ccf28ea222ed64fee234910 /include/connectivity/conncleanup.hxx | |
parent | a175788dcd3edd4c82f70458f0fa6e7b44d86526 (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, for connectivity.
Change-Id: I3645a2855e903848936520ac854fc1039fc456e8
Reviewed-on: https://gerrit.libreoffice.org/16971
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/connectivity/conncleanup.hxx')
-rw-r--r-- | include/connectivity/conncleanup.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/connectivity/conncleanup.hxx b/include/connectivity/conncleanup.hxx index 265f058e25bf..8fcad620db8c 100644 --- a/include/connectivity/conncleanup.hxx +++ b/include/connectivity/conncleanup.hxx @@ -20,7 +20,7 @@ #ifndef INCLUDED_CONNECTIVITY_CONNCLEANUP_HXX #define INCLUDED_CONNECTIVITY_CONNCLEANUP_HXX -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/beans/XPropertySet.hpp> #include <com/sun/star/sdbc/XRowSet.hpp> #include <com/sun/star/sdbc/XConnection.hpp> @@ -34,9 +34,9 @@ namespace dbtools //= OAutoConnectionDisposer - typedef ::cppu::WeakImplHelper2 < ::com::sun::star::beans::XPropertyChangeListener, - ::com::sun::star::sdbc::XRowSetListener - > OAutoConnectionDisposer_Base; + typedef ::cppu::WeakImplHelper < ::com::sun::star::beans::XPropertyChangeListener, + ::com::sun::star::sdbc::XRowSetListener + > OAutoConnectionDisposer_Base; class OOO_DLLPUBLIC_DBTOOLS OAutoConnectionDisposer : public OAutoConnectionDisposer_Base { |