diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-02-28 16:55:13 +0900 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-03-02 09:51:26 +0100 |
commit | 3e9914eded2c57f9c205c994f90e1b3292deec63 (patch) | |
tree | 6cf6f4b66ed20b52ef24fa9a74aaa862ad41b5b2 /starmath/source/accessibility.hxx | |
parent | 5806a7ed44f675f8c2d6aaf16a4347f3e11c9783 (diff) |
tdf#88206 Change uses of cppu::WeakImplHelper* to the variadic variant
... in starmath.
Change-Id: If414142c7d1356b8dbbf82bed70b908a4d161653
Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'starmath/source/accessibility.hxx')
-rw-r--r-- | starmath/source/accessibility.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/starmath/source/accessibility.hxx b/starmath/source/accessibility.hxx index 3948ef997e9d..9ff782f9e2cd 100644 --- a/starmath/source/accessibility.hxx +++ b/starmath/source/accessibility.hxx @@ -30,8 +30,7 @@ #include <com/sun/star/uno/Reference.h> #include <osl/mutex.hxx> #include <cppuhelper/interfacecontainer.h> -#include <cppuhelper/implbase5.hxx> -#include <cppuhelper/implbase6.hxx> +#include <cppuhelper/implbase.hxx> #include <svl/SfxBroadcaster.hxx> #include <editeng/editeng.hxx> @@ -53,7 +52,7 @@ struct AccessibleEventObject; typedef -cppu::WeakImplHelper6 +cppu::WeakImplHelper < com::sun::star::lang::XServiceInfo, com::sun::star::accessibility::XAccessible, @@ -302,7 +301,7 @@ public: typedef -cppu::WeakImplHelper5 +cppu::WeakImplHelper < com::sun::star::lang::XServiceInfo, com::sun::star::accessibility::XAccessible, |