summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-08-07 14:25:16 +0200
committerMichael Stahl <mstahl@redhat.com>2015-08-07 16:52:07 +0200
commit3de4481f654e5158870aa97c9faea66db6d972bb (patch)
treedca2adcb04ea692845dad3125217ef40ad0b064e /include
parentd7b4e6b434885c630ee94e8233fb142cbf0a0107 (diff)
xmloff: replace boost::ptr_set with std::set
Change-Id: Idc03bf695d94f47f2057629b4175c2bdf3a83f22
Diffstat (limited to 'include')
-rw-r--r--include/xmloff/xmltkmap.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/xmloff/xmltkmap.hxx b/include/xmloff/xmltkmap.hxx
index 70d2918d1744..d0f2288380dd 100644
--- a/include/xmloff/xmltkmap.hxx
+++ b/include/xmloff/xmltkmap.hxx
@@ -27,7 +27,6 @@
class SvXMLTokenMap_Impl;
-class SvXMLTokenMapEntry_Impl;
#define XML_TOK_UNKNOWN 0xffffU
#define XML_TOKEN_MAP_END { 0xffffU, ::xmloff::token::XML_TOKEN_INVALID, 0U }
@@ -41,10 +40,7 @@ struct SvXMLTokenMapEntry
class XMLOFF_DLLPUBLIC SvXMLTokenMap
{
- SvXMLTokenMap_Impl *pImpl;
-
- SAL_DLLPRIVATE SvXMLTokenMapEntry_Impl *_Find(
- sal_uInt16 nKind, const OUString& rName ) const;
+ SvXMLTokenMap_Impl *m_pImpl;
public: