diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-25 16:10:12 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-26 06:35:34 +0000 |
commit | 5ba6aafa20f78c6209c91a399a8110a415a274e1 (patch) | |
tree | c850fbb2ea02060abd918ba2d6b8e88041fa30cc /package/inc/ZipPackageStream.hxx | |
parent | 9a050db847b465d12606c1e52657e05ef95fc2a4 (diff) |
package: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: If88e1d741075e86997c91dc2c59eeebe45f67c1f
Reviewed-on: https://gerrit.libreoffice.org/17980
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'package/inc/ZipPackageStream.hxx')
-rw-r--r-- | package/inc/ZipPackageStream.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/inc/ZipPackageStream.hxx b/package/inc/ZipPackageStream.hxx index d94d662bfbc5..f2a7b8b6dd6a 100644 --- a/package/inc/ZipPackageStream.hxx +++ b/package/inc/ZipPackageStream.hxx @@ -26,7 +26,7 @@ #include <com/sun/star/uno/XComponentContext.hpp> #include <ZipPackageEntry.hxx> #include <rtl/ref.hxx> -#include <cppuhelper/implbase2.hxx> +#include <cppuhelper/implbase.hxx> #include <EncryptionData.hxx> #include <mutexholder.hxx> @@ -39,7 +39,7 @@ class ZipPackage; struct ZipEntry; -class ZipPackageStream : public cppu::ImplInheritanceHelper2 +class ZipPackageStream : public cppu::ImplInheritanceHelper < ZipPackageEntry, ::com::sun::star::io::XActiveDataSink, |