summaryrefslogtreecommitdiff
path: root/sc/inc/unitconv.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-01-12 11:50:32 +0100
committerMichael Stahl <mstahl@redhat.com>2016-01-12 12:22:33 +0100
commit79257f615e87dbd140bd8a6bd191cf7f027c137c (patch)
tree017ffd6a9896f1e3941cf654d6861a99cfdb4b5e /sc/inc/unitconv.hxx
parentbe983cfdd1205a02f9ced9b26e79eea5b1d2db44 (diff)
sc: replace boost::ptr_map with std::map
Change-Id: If254d2e6ae02cb1dfc4c967c1a8d0a1132bb6ad1
Diffstat (limited to 'sc/inc/unitconv.hxx')
-rw-r--r--sc/inc/unitconv.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/sc/inc/unitconv.hxx b/sc/inc/unitconv.hxx
index 2afa84dbf04a..607cc5d4e56a 100644
--- a/sc/inc/unitconv.hxx
+++ b/sc/inc/unitconv.hxx
@@ -21,7 +21,8 @@
#define INCLUDED_SC_INC_UNITCONV_HXX
#include <boost/noncopyable.hpp>
-#include <boost/ptr_container/ptr_map.hpp>
+
+#include <map>
class ScUnitConverterData
{
@@ -44,7 +45,7 @@ public:
class ScUnitConverter : public boost::noncopyable
{
- typedef boost::ptr_map<OUString, ScUnitConverterData> MapType;
+ typedef std::map<OUString, ScUnitConverterData> MapType;
MapType maData;
public: