diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-30 21:24:35 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-31 07:14:47 +0000 |
commit | c1c6a8615c420e8b1dd1f94614a36e250dab8f96 (patch) | |
tree | 46304fa1a82b0f3bde8d7c3341818ff69cec7934 /sd/workben/custompanel | |
parent | 5670f4ca8785180f135927477945027518e92ed4 (diff) |
sd: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I01909ee45c31d17356e13b1ff2430440daff9aa7
Reviewed-on: https://gerrit.libreoffice.org/18146
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sd/workben/custompanel')
-rw-r--r-- | sd/workben/custompanel/ctp_panel.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/workben/custompanel/ctp_panel.hxx b/sd/workben/custompanel/ctp_panel.hxx index 8fa084c92efc..0de2e9881bd4 100644 --- a/sd/workben/custompanel/ctp_panel.hxx +++ b/sd/workben/custompanel/ctp_panel.hxx @@ -27,7 +27,7 @@ #include <com/sun/star/drawing/framework/XResourceId.hpp> #include <com/sun/star/awt/XPaintListener.hpp> -#include <cppuhelper/compbase3.hxx> +#include <cppuhelper/compbase.hxx> #include <cppuhelper/basemutex.hxx> #include <boost/scoped_ptr.hpp> @@ -36,7 +36,7 @@ namespace sd { namespace colortoolpanel { // class SingleColorPanel - typedef ::cppu::WeakComponentImplHelper3 < ::com::sun::star::drawing::framework::XView + typedef ::cppu::WeakComponentImplHelper < ::com::sun::star::drawing::framework::XView , ::com::sun::star::ui::XToolPanel , ::com::sun::star::awt::XPaintListener > SingleColorPanel_Base; |