diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2015-08-26 18:13:46 +0900 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-08-27 07:39:35 +0000 |
commit | 61cac9542a2a16455aa6868b2495d940cb488726 (patch) | |
tree | 6ddad76200186d7af39e18f2939d88e549536be3 /sax/qa/cppunit | |
parent | 1950127b1cf056bc5b7d594e6a2d54375f8504ab (diff) |
sax: tdf#88206 replace cppu::WeakImplHelper*
with the variadic variants.
Change-Id: Id8d0c61b0454652abbbd09be0c72696a057dc2d2
Reviewed-on: https://gerrit.libreoffice.org/18008
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sax/qa/cppunit')
-rw-r--r-- | sax/qa/cppunit/parser.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sax/qa/cppunit/parser.cxx b/sax/qa/cppunit/parser.cxx index b781d9e1a6e1..e3f0ef91cfc4 100644 --- a/sax/qa/cppunit/parser.cxx +++ b/sax/qa/cppunit/parser.cxx @@ -14,7 +14,7 @@ #include <com/sun/star/xml/sax/SAXParseException.hpp> #include <com/sun/star/xml/sax/XFastTokenHandler.hpp> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <sax/fastparser.hxx> #include <test/bootstrapfixture.hxx> @@ -23,7 +23,7 @@ using namespace css::xml::sax; namespace { -class DummyTokenHandler : public cppu::WeakImplHelper1< xml::sax::XFastTokenHandler > +class DummyTokenHandler : public cppu::WeakImplHelper< xml::sax::XFastTokenHandler > { public: DummyTokenHandler() {} |