diff options
author | krishna keshav <princy.krishnakeshav@gmail.com> | 2016-06-10 19:34:05 +0530 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-14 11:09:14 +0000 |
commit | e8c8d824607bdad288680678f259b3e78308bab0 (patch) | |
tree | 98f6c7a43db27535449390b8b0fa14df9a3b4463 /include | |
parent | d18a6a56d39bed7a427e4fa0d55ea816d1a0b76d (diff) |
tdf#88206 Change use of cppu::WeakImplHelper*
Change-Id: I8562a69bf624902a54da004b0786cae2a98102e5
Reviewed-on: https://gerrit.libreoffice.org/26168
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xmloff/attrlist.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/xmloff/attrlist.hxx b/include/xmloff/attrlist.hxx index 34567c2cd766..db8f3ff1f2f3 100644 --- a/include/xmloff/attrlist.hxx +++ b/include/xmloff/attrlist.hxx @@ -31,12 +31,12 @@ #include <com/sun/star/xml/sax/XLocator.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp> -#include <cppuhelper/implbase3.hxx> +#include <cppuhelper/implbase.hxx> #include <memory> struct SvXMLAttributeList_Impl; -class XMLOFF_DLLPUBLIC SvXMLAttributeList : public ::cppu::WeakImplHelper3< +class XMLOFF_DLLPUBLIC SvXMLAttributeList : public ::cppu::WeakImplHelper< css::xml::sax::XAttributeList, css::util::XCloneable, css::lang::XUnoTunnel> |