summaryrefslogtreecommitdiffstats
path: root/include/sax
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2016-12-06 14:24:17 +0100
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-12-06 18:22:00 +0000
commitbd3402ba43c6e028e90d6bf6d829ebc72d6ebcd4 (patch)
tree3b86d7e06beb28b8fbecf7ee15e3b3a1fe6e0f94 /include/sax
parentConvert TextView to unique_ptr (diff)
downloadcore-bd3402ba43c6e028e90d6bf6d829ebc72d6ebcd4.tar.gz
core-bd3402ba43c6e028e90d6bf6d829ebc72d6ebcd4.zip
tdf#88206 replace cppu::WeakImplHelper* in sax and xml*
Change-Id: I75f4000a17155fbdff96fe0733dc0225b20cd4d2 Reviewed-on: https://gerrit.libreoffice.org/31678 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/sax')
-rw-r--r--include/sax/fastattribs.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/sax/fastattribs.hxx b/include/sax/fastattribs.hxx
index 0349ebdc6f17..3b17dee8a02f 100644
--- a/include/sax/fastattribs.hxx
+++ b/include/sax/fastattribs.hxx
@@ -25,7 +25,7 @@
#include <com/sun/star/xml/Attribute.hpp>
#include <com/sun/star/xml/FastAttribute.hpp>
-#include <cppuhelper/implbase1.hxx>
+#include <cppuhelper/implbase.hxx>
#include <sax/saxdllapi.h>
#include <map>
@@ -70,7 +70,7 @@ class SAX_DLLPUBLIC FastTokenHandlerBase
const char *pStr, size_t nLength );
};
-class SAX_DLLPUBLIC FastAttributeList : public ::cppu::WeakImplHelper1< css::xml::sax::XFastAttributeList >
+class SAX_DLLPUBLIC FastAttributeList : public cppu::WeakImplHelper< css::xml::sax::XFastAttributeList >
{
public:
FastAttributeList( const css::uno::Reference< css::xml::sax::XFastTokenHandler >& xTokenHandler,