summaryrefslogtreecommitdiffstats
path: root/io/qa
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-08-19 10:15:06 +0900
committerNoel Grandin <noelgrandin@gmail.com>2015-08-19 07:48:50 +0000
commite00d41f76d6cae3a93c112117af01287eb003e0e (patch)
tree7aaa27f9051ae58fc0aea9d094b19a59a37e0641 /io/qa
parentvcl: document VCL_DOUBLEBUFFERING_ENABLE (diff)
downloadcore-e00d41f76d6cae3a93c112117af01287eb003e0e.tar.gz
core-e00d41f76d6cae3a93c112117af01287eb003e0e.zip
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')
-rw-r--r--io/qa/textinputstream.cxx4
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) {}