diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-15 10:08:55 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-15 06:19:28 +0000 |
commit | ee7da352b885cfead32abb3fd111acead0c32816 (patch) | |
tree | 1609401dc01cc76a53a65b033827cfbe42fd1d0b /dbaccess/source | |
parent | 5bbff06137a87e97260a188f6745cf2a227f15cf (diff) |
Resolves: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I7154f9472f02fdf47d27ba715db55bb1ec669a8a
Reviewed-on: https://gerrit.libreoffice.org/18580
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'dbaccess/source')
-rw-r--r-- | dbaccess/source/core/dataaccess/documenteventexecutor.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/core/dataaccess/documenteventexecutor.hxx b/dbaccess/source/core/dataaccess/documenteventexecutor.hxx index af775cc5bdf0..2ea920ba94bf 100644 --- a/dbaccess/source/core/dataaccess/documenteventexecutor.hxx +++ b/dbaccess/source/core/dataaccess/documenteventexecutor.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/document/XDocumentEventListener.hpp> #include <com/sun/star/document/XEventsSupplier.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <memory> @@ -36,7 +36,7 @@ namespace dbaccess struct DocumentEventExecutor_Data; // DocumentEventExecutor - typedef ::cppu::WeakImplHelper1 < css::document::XDocumentEventListener + typedef ::cppu::WeakImplHelper < css::document::XDocumentEventListener > DocumentEventExecutor_Base; class DocumentEventExecutor : public DocumentEventExecutor_Base { |