summaryrefslogtreecommitdiff
path: root/sc/inc
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-12-18 17:20:56 +0100
committerMichael Stahl <mstahl@redhat.com>2015-12-18 17:21:29 +0100
commitdef6b1dd14b7d7dbf776e3de9e2f2d5a0cd1fc2c (patch)
tree305804c2937bc4a6d58db09ab06611edb7a97a7b /sc/inc
parent91f571a2d6b0db016342fa2f2e5b7b83a23ae873 (diff)
sc: replace boost::ptr_map with std::map<std::unique_ptr>
Change-Id: Ia9d061d9f5fb07e07fd6253a6493a4e9b1f9c975
Diffstat (limited to 'sc/inc')
-rw-r--r--sc/inc/dpobject.hxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/sc/inc/dpobject.hxx b/sc/inc/dpobject.hxx
index 0af7348eff14..610cf8e89a70 100644
--- a/sc/inc/dpobject.hxx
+++ b/sc/inc/dpobject.hxx
@@ -35,8 +35,6 @@
#include <vector>
#include <map>
-#include <boost/ptr_container/ptr_map.hpp>
-
namespace com { namespace sun { namespace star {
namespace container {
@@ -337,8 +335,8 @@ public:
class DBCaches
{
friend class ScDPCollection;
- typedef ::boost::ptr_map<DBType, ScDPCache, DBType::less> CachesType;
- CachesType maCaches;
+ typedef ::std::map<DBType, std::unique_ptr<ScDPCache>, DBType::less> CachesType;
+ CachesType m_Caches;
ScDocument* mpDoc;
public:
DBCaches(ScDocument* pDoc);