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 | |
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')
-rw-r--r-- | starmath/source/accessibility.hxx | 7 | ||||
-rw-r--r-- | starmath/source/smdetect.hxx | 4 |
2 files changed, 5 insertions, 6 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, diff --git a/starmath/source/smdetect.hxx b/starmath/source/smdetect.hxx index 7c0868b39b35..f7a274fd6764 100644 --- a/starmath/source/smdetect.hxx +++ b/starmath/source/smdetect.hxx @@ -25,7 +25,7 @@ #include <com/sun/star/document/XExtendedFilterDetection.hpp> #include <com/sun/star/uno/Exception.hpp> #include <com/sun/star/uno/Reference.h> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/lang/XServiceInfo.hpp> #include <com/sun/star/lang/XSingleServiceFactory.hpp> @@ -51,7 +51,7 @@ namespace com #include <sfx2/sfxuno.hxx> -class SmFilterDetect : public ::cppu::WeakImplHelper2< css::document::XExtendedFilterDetection, css::lang::XServiceInfo > +class SmFilterDetect : public ::cppu::WeakImplHelper< css::document::XExtendedFilterDetection, css::lang::XServiceInfo > { public: SmFilterDetect( const css::uno::Reference < css::lang::XMultiServiceFactory >& xFactory ); |