diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-22 17:06:40 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-23 06:06:04 +0000 |
commit | 7f4e0d6aa29da640408cf4cc84b2fc1a0c11f8ba (patch) | |
tree | 7d078f47d4d7b72c627bae7e7192cf7316b5ebeb /oox/source/shape | |
parent | 9beb2bedc0f65b90cd35f7fa6c9b53ee6729a0c4 (diff) |
oox: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I8a82df7ea24874d8e246dc983418d872f1943c8e
Reviewed-on: https://gerrit.libreoffice.org/17919
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'oox/source/shape')
-rw-r--r-- | oox/source/shape/ShapeContextHandler.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/oox/source/shape/ShapeContextHandler.hxx b/oox/source/shape/ShapeContextHandler.hxx index ad57ad933416..72b9f882b384 100644 --- a/oox/source/shape/ShapeContextHandler.hxx +++ b/oox/source/shape/ShapeContextHandler.hxx @@ -21,7 +21,7 @@ #include <boost/shared_ptr.hpp> #include <com/sun/star/uno/XComponentContext.hpp> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/xml/sax/XFastShapeContextHandler.hpp> #include "oox/drawingml/graphicshapecontext.hxx" #include "oox/drawingml/shape.hxx" @@ -47,7 +47,7 @@ public: }; class ShapeContextHandler: - public ::cppu::WeakImplHelper2< css::xml::sax::XFastShapeContextHandler, + public ::cppu::WeakImplHelper< css::xml::sax::XFastShapeContextHandler, css::lang::XServiceInfo > { public: |