diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-12-06 14:24:17 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-06 18:22:00 +0000 |
commit | bd3402ba43c6e028e90d6bf6d829ebc72d6ebcd4 (patch) | |
tree | 3b86d7e06beb28b8fbecf7ee15e3b3a1fe6e0f94 /include/xmlscript | |
parent | e67857cb18f6565959122a36d81ec722ac052a11 (diff) |
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/xmlscript')
-rw-r--r-- | include/xmlscript/xml_helper.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmlscript/xml_helper.hxx b/include/xmlscript/xml_helper.hxx index 59129f19984c..0e05bb3b6a19 100644 --- a/include/xmlscript/xml_helper.hxx +++ b/include/xmlscript/xml_helper.hxx @@ -21,7 +21,7 @@ #include <vector> #include <rtl/byteseq.hxx> -#include <cppuhelper/implbase1.hxx> +#include <cppuhelper/implbase.hxx> #include <com/sun/star/xml/sax/XDocumentHandler.hpp> #include <com/sun/star/io/XInputStream.hpp> #include <com/sun/star/io/XOutputStream.hpp> @@ -39,7 +39,7 @@ namespace xmlscript class XMLSCRIPT_DLLPUBLIC XMLElement - : public ::cppu::WeakImplHelper1< css::xml::sax::XAttributeList > + : public cppu::WeakImplHelper< css::xml::sax::XAttributeList > { public: inline XMLElement( OUString const & name ) |