diff options
author | Arkadiy Illarionov <qarkai@gmail.com> | 2018-06-03 16:00:14 +0300 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-06-11 08:57:06 +0200 |
commit | 3bd8759f5ed0393b2cc5560cab1b5d4052bd9728 (patch) | |
tree | d48d1325fff62b343fe2d9a0f609f97316485d51 /oox | |
parent | a901e48579e203a28cc0871ceed0356ae6a5798b (diff) |
tdf#96099 Remove some trivial std::vector typedefs
Change-Id: I0e60ec7a3edae42b25ff0917828d0a893ed39a38
Reviewed-on: https://gerrit.libreoffice.org/55245
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'oox')
-rw-r--r-- | oox/inc/drawingml/chart/typegroupmodel.hxx | 4 | ||||
-rw-r--r-- | oox/source/drawingml/chart/plotareaconverter.cxx | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/oox/inc/drawingml/chart/typegroupmodel.hxx b/oox/inc/drawingml/chart/typegroupmodel.hxx index ea40faa83a1c..e790d48dabdc 100644 --- a/oox/inc/drawingml/chart/typegroupmodel.hxx +++ b/oox/inc/drawingml/chart/typegroupmodel.hxx @@ -41,13 +41,13 @@ struct UpDownBarsModel struct TypeGroupModel { typedef ModelVector< SeriesModel > SeriesVector; - typedef ::std::vector< sal_Int32 > AxisIdVector; typedef ModelRef< DataLabelsModel > DataLabelsRef; typedef ModelRef< UpDownBarsModel > UpDownBarsRef; typedef ModelRef< Shape > ShapeRef; SeriesVector maSeries; /// Series attached to this chart type group. - AxisIdVector maAxisIds; /// List of axis identifiers used by this chart type. + std::vector<sal_Int32> + maAxisIds; /// List of axis identifiers used by this chart type. DataLabelsRef mxLabels; /// Data point label settings for all series. UpDownBarsRef mxUpDownBars; /// Up/down bars in stock charts. ShapeRef mxSerLines; /// Connector lines in stacked bar charts. diff --git a/oox/source/drawingml/chart/plotareaconverter.cxx b/oox/source/drawingml/chart/plotareaconverter.cxx index f89044d277de..d9755fdb9631 100644 --- a/oox/source/drawingml/chart/plotareaconverter.cxx +++ b/oox/source/drawingml/chart/plotareaconverter.cxx @@ -368,7 +368,7 @@ void PlotAreaConverter::convertFromModel( View3DModel& rView3DModel ) { pAxesSet = &aAxesSets.create(); // find axis models used by the type group - const TypeGroupModel::AxisIdVector& rAxisIds = typeGroup->maAxisIds; + const std::vector<sal_Int32>& rAxisIds = typeGroup->maAxisIds; if( rAxisIds.size() >= 1 ) pAxesSet->maAxes[ API_X_AXIS ] = aAxisMap.get( rAxisIds[ 0 ] ); if( rAxisIds.size() >= 2 ) |