summaryrefslogtreecommitdiffstats
path: root/include/comphelper/attributelist.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2016-02-06 18:38:32 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2016-02-06 18:41:33 +0100
commit8998768a34751d35403678a81464a26835b2230e (patch)
tree5f2973f81a5c856921b99d144972d9f1baeeb6f8 /include/comphelper/attributelist.hxx
parentmpColumn can already be dead in ~FormulaGroupAreaListener (diff)
downloadcore-8998768a34751d35403678a81464a26835b2230e.tar.gz
core-8998768a34751d35403678a81464a26835b2230e.zip
sax: Use comphelper's AttributeList
Change-Id: I6eb0115dba8797025a513cf1e6cfbfbe0b6f7e50
Diffstat (limited to 'include/comphelper/attributelist.hxx')
-rw-r--r--include/comphelper/attributelist.hxx9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/comphelper/attributelist.hxx b/include/comphelper/attributelist.hxx
index 1337a3a64272..18aaa5095c9a 100644
--- a/include/comphelper/attributelist.hxx
+++ b/include/comphelper/attributelist.hxx
@@ -30,10 +30,8 @@ namespace comphelper
struct AttributeList_Impl;
-class COMPHELPER_DLLPUBLIC AttributeList : public ::cppu::WeakImplHelper
-<
- css::xml::sax::XAttributeList
->
+class COMPHELPER_DLLPUBLIC AttributeList :
+ public ::cppu::WeakImplHelper<css::xml::sax::XAttributeList>
{
AttributeList_Impl *m_pImpl;
public:
@@ -41,7 +39,8 @@ public:
virtual ~AttributeList();
// methods that are not contained in any interface
- void AddAttribute( const OUString &sName , const OUString &sType , const OUString &sValue );
+ void AddAttribute(const OUString &sName , const OUString &sType , const OUString &sValue);
+ void Clear();
// css::xml::sax::XAttributeList
virtual sal_Int16 SAL_CALL getLength()