summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2017-12-02 21:14:24 +0100
committerJulien Nabet <serval2412@yahoo.fr>2017-12-03 00:47:36 +0100
commitcc1db6f2b0ebe05ae807628778835b62df00eca2 (patch)
treec1eddd984c43d6e08a4ff9e7f6674c05995234da /xmloff
parent2bfbe3492d443c31c83b830df3f95fad76a58d67 (diff)
Replace list by vector in SchXMLExport (xmloff)
Change-Id: I279c878891fccddacdc5b8154173105250f39a05 Reviewed-on: https://gerrit.libreoffice.org/45726 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/chart/SchXMLExport.cxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/xmloff/source/chart/SchXMLExport.cxx b/xmloff/source/chart/SchXMLExport.cxx
index 29ef4d2a431b..0b9c79f38e32 100644
--- a/xmloff/source/chart/SchXMLExport.cxx
+++ b/xmloff/source/chart/SchXMLExport.cxx
@@ -48,7 +48,7 @@
#include <rtl/math.hxx>
#include <comphelper/extract.hxx>
-#include <list>
+#include <vector>
#include <typeinfo>
#include <algorithm>
@@ -3237,7 +3237,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
if( xDiagram.is())
xColorScheme.set( xDiagram->getDefaultColorScheme());
- ::std::list< SchXMLDataPointStruct > aDataPointList;
+ ::std::vector< SchXMLDataPointStruct > aDataPointVector;
sal_Int32 nLastIndex = -1;
sal_Int32 nCurrIndex = 0;
@@ -3294,7 +3294,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
SchXMLDataPointStruct aPoint;
aPoint.maStyleName = maAutoStyleNameQueue.front();
maAutoStyleNameQueue.pop();
- aDataPointList.push_back( aPoint );
+ aDataPointVector.push_back( aPoint );
}
else
{
@@ -3303,7 +3303,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
}
}
}
- SAL_WARN_IF( bExportContent && (static_cast<sal_Int32>(aDataPointList.size()) != nSeriesLength), "xmloff.chart", "not enough data points on content export" );
+ SAL_WARN_IF( bExportContent && (static_cast<sal_Int32>(aDataPointVector.size()) != nSeriesLength), "xmloff.chart", "not enough data points on content export" );
}
else
{
@@ -3321,7 +3321,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
{
SchXMLDataPointStruct aPoint;
aPoint.mnRepeat = nCurrIndex - nLastIndex - 1;
- aDataPointList.push_back( aPoint );
+ aDataPointVector.push_back( aPoint );
}
uno::Reference< beans::XPropertySet > xPropSet;
@@ -3355,7 +3355,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
aPoint.maStyleName = maAutoStyleNameQueue.front();
maAutoStyleNameQueue.pop();
- aDataPointList.push_back( aPoint );
+ aDataPointVector.push_back( aPoint );
nLastIndex = nCurrIndex;
}
else
@@ -3368,7 +3368,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
// if we get here the property states are empty
SchXMLDataPointStruct aPoint;
- aDataPointList.push_back( aPoint );
+ aDataPointVector.push_back( aPoint );
nLastIndex = nCurrIndex;
}
@@ -3378,7 +3378,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
{
SchXMLDataPointStruct aPoint;
aPoint.mnRepeat = nRepeat;
- aDataPointList.push_back( aPoint );
+ aDataPointVector.push_back( aPoint );
}
}
@@ -3386,7 +3386,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
return;
// write elements (merge equal ones)
- ::std::list< SchXMLDataPointStruct >::iterator aIter = aDataPointList.begin();
+ ::std::vector< SchXMLDataPointStruct >::iterator aIter = aDataPointVector.begin();
SchXMLDataPointStruct aPoint;
SchXMLDataPointStruct aLastPoint;
@@ -3394,7 +3394,7 @@ void SchXMLExportHelper_Impl::exportDataPoints(
// the element is counted in the first iteration
aLastPoint.mnRepeat = 0;
- for( ; aIter != aDataPointList.end(); ++aIter )
+ for( ; aIter != aDataPointVector.end(); ++aIter )
{
aPoint = (*aIter);