diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-09-04 20:40:13 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-09-07 07:33:30 +0000 |
commit | 20a8b8ac6b4e3c17d28fb88dcc52b1d67ff6b39a (patch) | |
tree | b3365ad2c4ac335f049e43a4bc1814ccdfb7103f /stoc/source/corereflection | |
parent | 44a488d5b7d72b05834835efd4467a5582c91840 (diff) |
stoc: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: I34fe287036ca9b8e5edcb121ba70d9a93ab05276
Reviewed-on: https://gerrit.libreoffice.org/18338
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'stoc/source/corereflection')
-rw-r--r-- | stoc/source/corereflection/base.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/stoc/source/corereflection/base.hxx b/stoc/source/corereflection/base.hxx index 8259f7a6e62d..c4f5d36f2638 100644 --- a/stoc/source/corereflection/base.hxx +++ b/stoc/source/corereflection/base.hxx @@ -25,6 +25,7 @@ #include <osl/mutex.hxx> #include <uno/mapping.hxx> #include <uno/dispatcher.h> +#include <cppuhelper/implbase.hxx> #include <cppuhelper/weak.hxx> #include <cppuhelper/factory.hxx> #include <cppuhelper/component.hxx> @@ -141,7 +142,7 @@ public: class IdlClassImpl - : public ::cppu::WeakImplHelper1< css::reflection::XIdlClass > + : public ::cppu::WeakImplHelper< css::reflection::XIdlClass > { IdlReflectionServiceImpl * _pReflection; @@ -324,7 +325,7 @@ public: class IdlMemberImpl - : public ::cppu::WeakImplHelper1< css::reflection::XIdlMember > + : public ::cppu::WeakImplHelper< css::reflection::XIdlMember > { IdlReflectionServiceImpl * _pReflection; OUString _aName; |