diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-07-02 17:14:33 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-07-06 07:28:21 +0000 |
commit | 7640e244db0565b1cb3909a7e243a2accd86e5c9 (patch) | |
tree | 7333ac2033b6e6ad8df961472efec4f5d3672532 /basic/source/classes/errobject.cxx | |
parent | 52099a7ad3cafc206b71723fd41950203005e9eb (diff) |
tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants, in basic.
Change-Id: I13c5644bd6b9e964e42a98bee9c3019d959efb36
Reviewed-on: https://gerrit.libreoffice.org/16719
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'basic/source/classes/errobject.cxx')
-rw-r--r-- | basic/source/classes/errobject.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/classes/errobject.cxx b/basic/source/classes/errobject.cxx index 163336be8fe8..b1b2bf1c502a 100644 --- a/basic/source/classes/errobject.cxx +++ b/basic/source/classes/errobject.cxx @@ -19,7 +19,7 @@ #include "errobject.hxx" -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/script/XDefaultProperty.hpp> #include "sbintern.hxx" #include "runtime.hxx" @@ -27,7 +27,7 @@ using namespace ::com::sun::star; using namespace ::ooo; -typedef ::cppu::WeakImplHelper2< vba::XErrObject, script::XDefaultProperty > ErrObjectImpl_BASE; +typedef ::cppu::WeakImplHelper< vba::XErrObject, script::XDefaultProperty > ErrObjectImpl_BASE; class ErrObject : public ErrObjectImpl_BASE { |