diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-10 12:51:10 +0900 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-09-10 13:11:11 +0000 |
commit | e50bcf0a2267bf3c80a5d99442bfe08681241836 (patch) | |
tree | f14ffb6ae356be1e83c9e392d7bcad4204040fdd /vbahelper/source/msforms/vbaprogressbar.hxx | |
parent | 9303e87bb6839afc09d4db543ff17f2fb5142359 (diff) |
vbahelper: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I8a7f7c81a876b5f1ac987375f8c43bbef89dc087
Reviewed-on: https://gerrit.libreoffice.org/18461
Reviewed-by: Michael Stahl <mstahl@redhat.com>
Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'vbahelper/source/msforms/vbaprogressbar.hxx')
-rw-r--r-- | vbahelper/source/msforms/vbaprogressbar.hxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/vbahelper/source/msforms/vbaprogressbar.hxx b/vbahelper/source/msforms/vbaprogressbar.hxx index dea5a0a62cc6..b0b70a556e2d 100644 --- a/vbahelper/source/msforms/vbaprogressbar.hxx +++ b/vbahelper/source/msforms/vbaprogressbar.hxx @@ -20,14 +20,13 @@ #ifndef INCLUDED_VBAHELPER_SOURCE_MSFORMS_VBAPROGRESSBAR_HXX #define INCLUDED_VBAHELPER_SOURCE_MSFORMS_VBAPROGRESSBAR_HXX -#include <cppuhelper/implbase1.hxx> #include <ooo/vba/msforms/XProgressBar.hpp> #include "vbacontrol.hxx" #include <vbahelper/vbahelper.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> -typedef cppu::ImplInheritanceHelper2< ScVbaControl, ov::msforms::XProgressBar, css::script::XDefaultProperty > ProgressBarImpl_BASE; +typedef cppu::ImplInheritanceHelper< ScVbaControl, ov::msforms::XProgressBar, css::script::XDefaultProperty > ProgressBarImpl_BASE; class ScVbaProgressBar : public ProgressBarImpl_BASE { |