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/ZipPackageBuffer.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/ZipPackageBuffer.hxx')
-rw-r--r-- | package/inc/ZipPackageBuffer.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/inc/ZipPackageBuffer.hxx b/package/inc/ZipPackageBuffer.hxx index df1d8dbf9806..003de591ffa9 100644 --- a/package/inc/ZipPackageBuffer.hxx +++ b/package/inc/ZipPackageBuffer.hxx @@ -22,9 +22,9 @@ #include <com/sun/star/io/XOutputStream.hpp> #include <com/sun/star/io/XSeekable.hpp> #include <com/sun/star/io/XInputStream.hpp> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> -class ZipPackageBuffer : public ::cppu::WeakImplHelper3 +class ZipPackageBuffer : public ::cppu::WeakImplHelper < com::sun::star::io::XInputStream, com::sun::star::io::XOutputStream, |