summaryrefslogtreecommitdiff
path: root/sc/inc/chartlis.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-01-02 16:22:46 +0000
committerCaolán McNamara <caolanm@redhat.com>2015-01-03 21:11:20 +0000
commit79f115b91e5ad4d9038e127bf0b57843e157eac9 (patch)
tree704dee023dca3144f78613c41ba528ed65b1d80f /sc/inc/chartlis.hxx
parent05dcb073d60579a142e3074fb1b137f36840ee9e (diff)
boost::unordered_map->std::unordered_map
Change-Id: I2c65709cda6f10810452dfb8aa1a247cb3a5564f
Diffstat (limited to 'sc/inc/chartlis.hxx')
-rw-r--r--sc/inc/chartlis.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/inc/chartlis.hxx b/sc/inc/chartlis.hxx
index 060546081f26..85356ed9c325 100644
--- a/sc/inc/chartlis.hxx
+++ b/sc/inc/chartlis.hxx
@@ -29,9 +29,9 @@
#include <vector>
#include <list>
-#include <boost/unordered_set.hpp>
#include <boost/scoped_ptr.hpp>
#include <boost/ptr_container/ptr_map.hpp>
+#include <unordered_set>
class ScDocument;
class ScChartUnoData;
@@ -49,14 +49,14 @@ public:
virtual void notify(sal_uInt16 nFileId, ScExternalRefManager::LinkUpdateType eType) SAL_OVERRIDE;
void addFileId(sal_uInt16 nFileId);
void removeFileId(sal_uInt16 nFileId);
- ::boost::unordered_set<sal_uInt16>& getAllFileIds() { return maFileIds;}
+ std::unordered_set<sal_uInt16>& getAllFileIds() { return maFileIds;}
private:
ExternalRefListener();
ExternalRefListener(const ExternalRefListener& r);
ScChartListener& mrParent;
- ::boost::unordered_set<sal_uInt16> maFileIds;
+ std::unordered_set<sal_uInt16> maFileIds;
ScDocument* mpDoc;
};
@@ -138,7 +138,7 @@ public:
};
typedef boost::ptr_map<OUString, ScChartListener> ListenersType;
- typedef boost::unordered_set<OUString, OUStringHash> StringSetType;
+ typedef std::unordered_set<OUString, OUStringHash> StringSetType;
private:
ListenersType maListeners;
enum UpdateStatus