summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorkrishna keshav <princy.krishnakeshav@gmail.com>2016-06-10 19:34:05 +0530
committerNoel Grandin <noelgrandin@gmail.com>2016-06-14 11:09:14 +0000
commite8c8d824607bdad288680678f259b3e78308bab0 (patch)
tree98f6c7a43db27535449390b8b0fa14df9a3b4463 /xmloff
parentd18a6a56d39bed7a427e4fa0d55ea816d1a0b76d (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 'xmloff')
-rw-r--r--xmloff/source/core/attrlist.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/xmloff/source/core/attrlist.cxx b/xmloff/source/core/attrlist.cxx
index f01dc416da50..ed81acdc0f04 100644
--- a/xmloff/source/core/attrlist.cxx
+++ b/xmloff/source/core/attrlist.cxx
@@ -24,6 +24,7 @@
#include <osl/diagnose.h>
#include <xmloff/xmltoken.hxx>
#include <comphelper/servicehelper.hxx>
+#include <cppuhelper/implbase.hxx>
#include <xmloff/attrlist.hxx>
@@ -76,7 +77,7 @@ sal_Int16 SAL_CALL SvXMLAttributeList::getLength() throw( css::uno::RuntimeExcep
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 ) )
{
}