diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-19 10:15:06 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-19 07:48:50 +0000 |
commit | e00d41f76d6cae3a93c112117af01287eb003e0e (patch) | |
tree | 7aaa27f9051ae58fc0aea9d094b19a59a37e0641 /io/qa/textinputstream.cxx | |
parent | b83c4ea54c24e2ef8bfa899e3ba10c413bb0aa4a (diff) |
io: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants.
Change-Id: Iad03db6b729a785ab8b29a69943fa45f5a36b21b
Reviewed-on: https://gerrit.libreoffice.org/17849
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Tested-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'io/qa/textinputstream.cxx')
-rw-r--r-- | io/qa/textinputstream.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/io/qa/textinputstream.cxx b/io/qa/textinputstream.cxx index 15a59bca05fe..89fc32091571 100644 --- a/io/qa/textinputstream.cxx +++ b/io/qa/textinputstream.cxx @@ -23,7 +23,7 @@ #include "com/sun/star/uno/Sequence.hxx" #include <com/sun/star/uno/Reference.hxx> #include "com/sun/star/uno/RuntimeException.hdl" -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <cppunit/TestAssert.h> #include <cppunit/extensions/HelperMacros.h> #include <cppunit/plugin/TestPlugIn.h> @@ -34,7 +34,7 @@ namespace { -class Input: public cppu::WeakImplHelper1<css::io::XInputStream> { +class Input: public cppu::WeakImplHelper<css::io::XInputStream> { public: Input(): open_(true), index_(0) {} |