From 3e9914eded2c57f9c205c994f90e1b3292deec63 Mon Sep 17 00:00:00 2001 From: Takeshi Abe Date: Sat, 28 Feb 2015 16:55:13 +0900 Subject: tdf#88206 Change uses of cppu::WeakImplHelper* to the variadic variant ... in starmath. Change-Id: If414142c7d1356b8dbbf82bed70b908a4d161653 Signed-off-by: Stephan Bergmann --- starmath/source/accessibility.hxx | 7 +++---- starmath/source/smdetect.hxx | 4 ++-- 2 files changed, 5 insertions(+), 6 deletions(-) (limited to 'starmath') 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 #include #include -#include -#include +#include #include #include @@ -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 #include #include -#include +#include #include #include @@ -51,7 +51,7 @@ namespace com #include -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 ); -- cgit