summaryrefslogtreecommitdiffstats
path: root/sc/source/filter/inc/xichart.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2016-01-13 17:07:11 +0100
committerMichael Stahl <mstahl@redhat.com>2016-01-13 17:53:13 +0100
commit3e53470184f0398429004e836fe6e9bdd08f2240 (patch)
tree510c86ac1ddf9a2cb2a0b4b0b7060a0a28447bfd /sc/source/filter/inc/xichart.hxx
parentsc: replace boost::ptr_map with std::map<std::unique_ptr> (diff)
downloadcore-3e53470184f0398429004e836fe6e9bdd08f2240.tar.gz
core-3e53470184f0398429004e836fe6e9bdd08f2240.zip
sc: replace boost::ptr_map with std::map
Change-Id: I21fbba963e595377a0f6e9151e5510c660d8ca5f
Diffstat (limited to 'sc/source/filter/inc/xichart.hxx')
-rw-r--r--sc/source/filter/inc/xichart.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sc/source/filter/inc/xichart.hxx b/sc/source/filter/inc/xichart.hxx
index b57ecbd24435..6410aece5b34 100644
--- a/sc/source/filter/inc/xichart.hxx
+++ b/sc/source/filter/inc/xichart.hxx
@@ -1020,7 +1020,7 @@ private:
void ReadChDataFormat( XclImpStream& rStrm );
/** Returns true, if the chart type group contains a hi-lo line format. */
- inline bool HasHiLoLine() const { return maChartLines.find( EXC_CHCHARTLINE_HILO ) != maChartLines.end(); }
+ inline bool HasHiLoLine() const { return m_ChartLines.find(EXC_CHCHARTLINE_HILO) != m_ChartLines.end(); }
/** Returns true, if the chart type group contains drop bar formats. */
inline bool HasDropBars() const { return !m_DropBars.empty(); }
@@ -1038,7 +1038,7 @@ private:
private:
typedef ::std::vector< XclImpChSeriesRef > XclImpChSeriesVec;
typedef ::std::map<sal_uInt16, std::unique_ptr<XclImpChDropBar>> XclImpChDropBarMap;
- typedef boost::ptr_map<sal_uInt16, XclImpChLineFormat> XclImpChLineFormatMap;
+ typedef ::std::map<sal_uInt16, XclImpChLineFormat> XclImpChLineFormatMap;
typedef ::std::set< sal_uInt16 > UInt16Set;
XclChTypeGroup maData; /// Contents of the CHTYPEGROUP record.
@@ -1049,7 +1049,7 @@ private:
XclImpChChart3dRef mxChart3d; /// 3D settings (CHCHART3D record).
XclImpChLegendRef mxLegend; /// Chart legend (CHLEGEND group).
XclImpChDropBarMap m_DropBars; /// Dropbars (CHDROPBAR group).
- XclImpChLineFormatMap maChartLines; /// Global line formats (CHCHARTLINE group).
+ XclImpChLineFormatMap m_ChartLines; /// Global line formats (CHCHARTLINE group).
XclImpChDataFormatRef mxGroupFmt; /// Default format for all series (CHDATAFORMAT group).
UInt16Set maUnusedFormats; /// Contains unused format indexes for automatic colors.
};