From def6b1dd14b7d7dbf776e3de9e2f2d5a0cd1fc2c Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Fri, 18 Dec 2015 17:20:56 +0100 Subject: sc: replace boost::ptr_map with std::map Change-Id: Ia9d061d9f5fb07e07fd6253a6493a4e9b1f9c975 --- sc/inc/dpobject.hxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'sc/inc') 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 #include -#include - namespace com { namespace sun { namespace star { namespace container { @@ -337,8 +335,8 @@ public: class DBCaches { friend class ScDPCollection; - typedef ::boost::ptr_map CachesType; - CachesType maCaches; + typedef ::std::map, DBType::less> CachesType; + CachesType m_Caches; ScDocument* mpDoc; public: DBCaches(ScDocument* pDoc); -- cgit