diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-06 19:59:36 +0900 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-07 09:01:16 +0000 |
commit | 4e0a5cf0f929ae5fef7eda8057202ac29a8f3a77 (patch) | |
tree | 6e3348a7a019e734d8924865bc8755f90694bdca /svx/source/svdraw/svdouno.cxx | |
parent | 7884205f64a962b586a553fd094abc46a3c1562e (diff) |
svx: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: Id881385b2653da2ee89498afbd6453d40acaea83
Reviewed-on: https://gerrit.libreoffice.org/18358
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 'svx/source/svdraw/svdouno.cxx')
-rw-r--r-- | svx/source/svdraw/svdouno.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/svdraw/svdouno.cxx b/svx/source/svdraw/svdouno.cxx index e7ce02ae2997..b3d227bd8d38 100644 --- a/svx/source/svdraw/svdouno.cxx +++ b/svx/source/svdraw/svdouno.cxx @@ -62,10 +62,10 @@ using namespace sdr::contact; #include <com/sun/star/lang/XEventListener.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> -class SdrControlEventListenerImpl : public ::cppu::WeakImplHelper1< ::com::sun::star::lang::XEventListener > +class SdrControlEventListenerImpl : public ::cppu::WeakImplHelper< ::com::sun::star::lang::XEventListener > { protected: SdrUnoObj* pObj; |