diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-04 18:25:57 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-07 07:37:07 +0000 |
commit | ca7bab0561aa6afa399f1d2f449402545768859e (patch) | |
tree | bfde19ec9d99544ecf51cfb551a0ac5d76634d9a /slideshow/source/engine/shapes/gdimtftools.cxx | |
parent | 9ea32ccd6e45e2d914e09413a4164045aff9f0fd (diff) |
slideshow: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I3160235d0e6253626a8facbfed33e3c252505cbf
Reviewed-on: https://gerrit.libreoffice.org/18336
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'slideshow/source/engine/shapes/gdimtftools.cxx')
-rw-r--r-- | slideshow/source/engine/shapes/gdimtftools.cxx | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/slideshow/source/engine/shapes/gdimtftools.cxx b/slideshow/source/engine/shapes/gdimtftools.cxx index 83fce3d442eb..727e962f52d8 100644 --- a/slideshow/source/engine/shapes/gdimtftools.cxx +++ b/slideshow/source/engine/shapes/gdimtftools.cxx @@ -29,10 +29,9 @@ #include <com/sun/star/drawing/GraphicExportFilter.hpp> #include <cppuhelper/basemutex.hxx> -#include <cppuhelper/compbase1.hxx> +#include <cppuhelper/compbase.hxx> #include <comphelper/uno3.hxx> -#include <cppuhelper/implbase1.hxx> #include <tools/stream.hxx> #include <vcl/svapp.hxx> @@ -104,7 +103,7 @@ bool hasUnsupportedActions( const GDIMetaFile& rMtf ) namespace { -typedef ::cppu::WeakComponentImplHelper1< graphic::XGraphicRenderer > DummyRenderer_Base; +typedef ::cppu::WeakComponentImplHelper< graphic::XGraphicRenderer > DummyRenderer_Base; class DummyRenderer: public cppu::BaseMutex, public DummyRenderer_Base { |