summaryrefslogtreecommitdiff
path: root/unoxml/qa
diff options
context:
space:
mode:
authorTakeshi Abe <tabe@fixedpoint.jp>2015-09-10 12:16:49 +0900
committerMichael Stahl <mstahl@redhat.com>2015-09-10 13:10:52 +0000
commit9303e87bb6839afc09d4db543ff17f2fb5142359 (patch)
treecf2191b46d819fa7e894c56dd759227c9334c41e /unoxml/qa
parenta9fa776cdaacac30fd8df22d85aab30ef70c9776 (diff)
unoxml: tdf#88206 replace cppu::WeakImplHelper* etc.
with the variadic variants. Change-Id: Id753717b228061c810a0122e551326ab001949a9 Reviewed-on: https://gerrit.libreoffice.org/18460 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'unoxml/qa')
-rw-r--r--unoxml/qa/unit/domtest.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/unoxml/qa/unit/domtest.cxx b/unoxml/qa/unit/domtest.cxx
index 9a03f66a8c1c..d85c8aa43908 100644
--- a/unoxml/qa/unit/domtest.cxx
+++ b/unoxml/qa/unit/domtest.cxx
@@ -24,7 +24,7 @@
#include <comphelper/seqstream.hxx>
#include <comphelper/sequence.hxx>
#include <comphelper/processfactory.hxx>
-#include <cppuhelper/compbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <cppuhelper/bootstrap.hxx>
#include <cppuhelper/basemutex.hxx>
#include <cppunit/TestFixture.h>
@@ -89,7 +89,7 @@ static const char errorTestFile[] =
static const char fatalTestFile[] = "";
struct ErrorHandler
- : public ::cppu::WeakImplHelper1< xml::sax::XErrorHandler >
+ : public ::cppu::WeakImplHelper< xml::sax::XErrorHandler >
{
sal_uInt32 mnErrCount;
sal_uInt32 mnFatalCount;
@@ -117,7 +117,7 @@ struct ErrorHandler
};
struct DocumentHandler
- : public ::cppu::WeakImplHelper1< xml::sax::XFastDocumentHandler >
+ : public ::cppu::WeakImplHelper< xml::sax::XFastDocumentHandler >
{
// XFastContextHandler
virtual void SAL_CALL startFastElement( ::sal_Int32 Element, const uno::Reference< xml::sax::XFastAttributeList >& ) throw (xml::sax::SAXException, uno::RuntimeException) SAL_OVERRIDE
@@ -169,7 +169,7 @@ struct DocumentHandler
};
struct TokenHandler
- : public ::cppu::WeakImplHelper1< xml::sax::XFastTokenHandler >
+ : public ::cppu::WeakImplHelper< xml::sax::XFastTokenHandler >
{
virtual ::sal_Int32 SAL_CALL getTokenFromUTF8( const uno::Sequence< ::sal_Int8 >& Identifier ) throw (uno::RuntimeException) SAL_OVERRIDE
{