diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-01-01 19:58:59 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-01-02 16:14:36 +0000 |
commit | fd1372ba8b1c3eb3c7fad6d9c623176c8071f31b (patch) | |
tree | 448f0d04f780007b3eeeb76b7c4c8c54cbfd6d9b /chart2/source | |
parent | c48b928acab9f226ad5ad816fe773c21051431e8 (diff) |
boost::unordered_map->std::unordered_map
you can get debug stl this way
Change-Id: Ia70a3e7c7c452390e8bee34975d296c9318e4a19
Diffstat (limited to 'chart2/source')
-rw-r--r-- | chart2/source/inc/DataSeriesHelper.hxx | 3 | ||||
-rw-r--r-- | chart2/source/inc/PropertyHelper.hxx | 6 | ||||
-rw-r--r-- | chart2/source/view/charttypes/VSeriesPlotter.cxx | 3 | ||||
-rw-r--r-- | chart2/source/view/main/DummyXShape.hxx | 6 |
4 files changed, 9 insertions, 9 deletions
diff --git a/chart2/source/inc/DataSeriesHelper.hxx b/chart2/source/inc/DataSeriesHelper.hxx index 13ea4bce7dbd..1c1e6c0c98b1 100644 --- a/chart2/source/inc/DataSeriesHelper.hxx +++ b/chart2/source/inc/DataSeriesHelper.hxx @@ -29,9 +29,8 @@ #include "StackMode.hxx" #include "charttoolsdllapi.hxx" -#include <vector> #include <functional> -#include <boost/unordered_map.hpp> +#include <vector> namespace chart { diff --git a/chart2/source/inc/PropertyHelper.hxx b/chart2/source/inc/PropertyHelper.hxx index be066ca04603..9d52c07a4022 100644 --- a/chart2/source/inc/PropertyHelper.hxx +++ b/chart2/source/inc/PropertyHelper.hxx @@ -25,17 +25,17 @@ #include <com/sun/star/uno/Any.hxx> #include <com/sun/star/lang/XMultiServiceFactory.hpp> #include <comphelper/property.hxx> -#include <map> #include "charttoolsdllapi.hxx" -#include <boost/unordered_map.hpp> +#include <map> +#include <unordered_map> namespace chart { typedef int tPropertyValueMapKey; -typedef boost::unordered_map<tPropertyValueMapKey, com::sun::star::uno::Any> tPropertyValueMap; +typedef std::unordered_map<tPropertyValueMapKey, css::uno::Any> tPropertyValueMap; namespace PropertyHelper { diff --git a/chart2/source/view/charttypes/VSeriesPlotter.cxx b/chart2/source/view/charttypes/VSeriesPlotter.cxx index 3716797c4d82..8acf4273e1d8 100644 --- a/chart2/source/view/charttypes/VSeriesPlotter.cxx +++ b/chart2/source/view/charttypes/VSeriesPlotter.cxx @@ -70,6 +70,7 @@ #include <functional> #include <map> +#include <unordered_map> #include <boost/ptr_container/ptr_map.hpp> @@ -1584,7 +1585,7 @@ class PerXMinMaxCalculator typedef std::pair<double, double> MinMaxType; typedef std::map<size_t, MinMaxType> SeriesMinMaxType; typedef boost::ptr_map<double, SeriesMinMaxType> GroupMinMaxType; - typedef boost::unordered_map<double, MinMaxType> TotalStoreType; + typedef std::unordered_map<double, MinMaxType> TotalStoreType; GroupMinMaxType maSeriesGroup; size_t mnCurSeries; diff --git a/chart2/source/view/main/DummyXShape.hxx b/chart2/source/view/main/DummyXShape.hxx index 6b03733f39f8..64149d3c3d2c 100644 --- a/chart2/source/view/main/DummyXShape.hxx +++ b/chart2/source/view/main/DummyXShape.hxx @@ -58,9 +58,9 @@ #include <rtl/ustring.hxx> -#include <vector> #include <map> -#include <boost/unordered_map.hpp> +#include <unordered_map> +#include <vector> namespace chart { @@ -96,7 +96,7 @@ public: private: - boost::unordered_map<TextCacheKey, BitmapEx, TextCacheKeyHash> maCache; + std::unordered_map<TextCacheKey, BitmapEx, TextCacheKeyHash> maCache; }; class DummyXShape : public cppu::WeakAggImplHelper6< |