summaryrefslogtreecommitdiff
path: root/chart2/source/model/template/ColumnChartType.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'chart2/source/model/template/ColumnChartType.cxx')
-rw-r--r--chart2/source/model/template/ColumnChartType.cxx10
1 files changed, 4 insertions, 6 deletions
diff --git a/chart2/source/model/template/ColumnChartType.cxx b/chart2/source/model/template/ColumnChartType.cxx
index b04fd86b299f..af99026027bc 100644
--- a/chart2/source/model/template/ColumnChartType.cxx
+++ b/chart2/source/model/template/ColumnChartType.cxx
@@ -40,19 +40,17 @@ enum
void lcl_AddPropertiesToVector(
std::vector< Property > & rOutProperties )
{
- rOutProperties.push_back(
- Property( "OverlapSequence",
+ rOutProperties.emplace_back( "OverlapSequence",
PROP_BARCHARTTYPE_OVERLAP_SEQUENCE,
cppu::UnoType<Sequence< sal_Int32 >>::get(),
beans::PropertyAttribute::BOUND
- | beans::PropertyAttribute::MAYBEDEFAULT ));
+ | beans::PropertyAttribute::MAYBEDEFAULT );
- rOutProperties.push_back(
- Property( "GapwidthSequence",
+ rOutProperties.emplace_back( "GapwidthSequence",
PROP_BARCHARTTYPE_GAPWIDTH_SEQUENCE,
cppu::UnoType<Sequence< sal_Int32 >>::get(),
beans::PropertyAttribute::BOUND
- | beans::PropertyAttribute::MAYBEDEFAULT ));
+ | beans::PropertyAttribute::MAYBEDEFAULT );
}
struct StaticColumnChartTypeDefaults_Initializer