summaryrefslogtreecommitdiff
path: root/winaccessibility/inc
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-15 10:08:55 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-09-15 06:19:28 +0000
commitee7da352b885cfead32abb3fd111acead0c32816 (patch)
tree1609401dc01cc76a53a65b033827cfbe42fd1d0b /winaccessibility/inc
parent5bbff06137a87e97260a188f6745cf2a227f15cf (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 'winaccessibility/inc')
-rw-r--r--winaccessibility/inc/AccEventListener.hxx4
-rw-r--r--winaccessibility/inc/AccTopWindowListener.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/winaccessibility/inc/AccEventListener.hxx b/winaccessibility/inc/AccEventListener.hxx
index c656e3659533..f3f85131dd2f 100644
--- a/winaccessibility/inc/AccEventListener.hxx
+++ b/winaccessibility/inc/AccEventListener.hxx
@@ -23,7 +23,7 @@
#include <com/sun/star/accessibility/XAccessibleEventListener.hpp>
#include <com/sun/star/accessibility/XAccessible.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <osl/mutex.hxx>
@@ -35,7 +35,7 @@ class AccObjectManagerAgent;
* methods.
*/
class AccEventListener
- : public ::cppu::WeakImplHelper1<
+ : public ::cppu::WeakImplHelper<
com::sun::star::accessibility::XAccessibleEventListener>
{
protected:
diff --git a/winaccessibility/inc/AccTopWindowListener.hxx b/winaccessibility/inc/AccTopWindowListener.hxx
index ecfd819e540a..1a52becf0e60 100644
--- a/winaccessibility/inc/AccTopWindowListener.hxx
+++ b/winaccessibility/inc/AccTopWindowListener.hxx
@@ -24,7 +24,7 @@
#include <com/sun/star/awt/XExtendedToolkit.hpp>
#include <com/sun/star/accessibility/XAccessibleContext.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include "AccObjectManagerAgent.hxx"
@@ -36,7 +36,7 @@
* cached into bridge managers, and they are monitored by listeners for later accessible event handling.
*/
class AccTopWindowListener
- : public ::cppu::WeakImplHelper1<com::sun::star::awt::XTopWindowListener>
+ : public ::cppu::WeakImplHelper<com::sun::star::awt::XTopWindowListener>
{
private:
AccObjectManagerAgent accManagerAgent;