Kaydet (Commit) e8c8d824 authored tarafından krishna keshav's avatar krishna keshav Kaydeden (comit) Noel Grandin

tdf#88206 Change use of cppu::WeakImplHelper*

Change-Id: I8562a69bf624902a54da004b0786cae2a98102e5
Reviewed-on: https://gerrit.libreoffice.org/26168Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noelgrandin@gmail.com>
üst d18a6a56
...@@ -31,12 +31,12 @@ ...@@ -31,12 +31,12 @@
#include <com/sun/star/xml/sax/XLocator.hpp> #include <com/sun/star/xml/sax/XLocator.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp> #include <com/sun/star/lang/XUnoTunnel.hpp>
#include <cppuhelper/implbase3.hxx> #include <cppuhelper/implbase.hxx>
#include <memory> #include <memory>
struct SvXMLAttributeList_Impl; struct SvXMLAttributeList_Impl;
class XMLOFF_DLLPUBLIC SvXMLAttributeList : public ::cppu::WeakImplHelper3< class XMLOFF_DLLPUBLIC SvXMLAttributeList : public ::cppu::WeakImplHelper<
css::xml::sax::XAttributeList, css::xml::sax::XAttributeList,
css::util::XCloneable, css::util::XCloneable,
css::lang::XUnoTunnel> css::lang::XUnoTunnel>
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <osl/diagnose.h> #include <osl/diagnose.h>
#include <xmloff/xmltoken.hxx> #include <xmloff/xmltoken.hxx>
#include <comphelper/servicehelper.hxx> #include <comphelper/servicehelper.hxx>
#include <cppuhelper/implbase.hxx>
#include <xmloff/attrlist.hxx> #include <xmloff/attrlist.hxx>
...@@ -76,7 +77,7 @@ sal_Int16 SAL_CALL SvXMLAttributeList::getLength() throw( css::uno::RuntimeExcep ...@@ -76,7 +77,7 @@ sal_Int16 SAL_CALL SvXMLAttributeList::getLength() throw( css::uno::RuntimeExcep
SvXMLAttributeList::SvXMLAttributeList( const SvXMLAttributeList &r ) : SvXMLAttributeList::SvXMLAttributeList( const SvXMLAttributeList &r ) :
cppu::WeakImplHelper3<css::xml::sax::XAttributeList, css::util::XCloneable, css::lang::XUnoTunnel>(r), cppu::WeakImplHelper<css::xml::sax::XAttributeList, css::util::XCloneable, css::lang::XUnoTunnel>(r),
m_pImpl( new SvXMLAttributeList_Impl( *r.m_pImpl ) ) m_pImpl( new SvXMLAttributeList_Impl( *r.m_pImpl ) )
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment