diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-10-18 14:49:01 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2015-10-18 14:52:12 +0200 |
commit | 51f10626e61fff74346e8315c2a42c7f45ef5170 (patch) | |
tree | 3d04302a794ca1e58d38e1defa5a5a3867ffd87f /chart2 | |
parent | 6f3fa536a14d10733f4eb04747ecc74e0eac080d (diff) |
tdf#94960, Revert "it is insane to not map line and ..."
This reverts commit 84254268bf5902d2405815970218e1893a7a673e.
Change-Id: Id99bc1f44a4e23daaf2f12585981c0be66cbeda5
Diffstat (limited to 'chart2')
-rw-r--r-- | chart2/source/model/main/DataPointProperties.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chart2/source/model/main/DataPointProperties.cxx b/chart2/source/model/main/DataPointProperties.cxx index 3d04e961ceb1..20066cd67a51 100644 --- a/chart2/source/model/main/DataPointProperties.cxx +++ b/chart2/source/model/main/DataPointProperties.cxx @@ -177,21 +177,21 @@ void DataPointProperties::AddPropertiesToVector( rOutProperties.push_back( Property( "BorderStyle", - LinePropertiesHelper::PROP_LINE_STYLE, + PROP_DATAPOINT_BORDER_STYLE, cppu::UnoType<drawing::LineStyle>::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT )); rOutProperties.push_back( Property( "BorderWidth", - LinePropertiesHelper::PROP_LINE_WIDTH, + PROP_DATAPOINT_BORDER_WIDTH, cppu::UnoType<sal_Int32>::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEDEFAULT )); rOutProperties.push_back( Property( "BorderDashName", - LinePropertiesHelper::PROP_LINE_DASH_NAME, + PROP_DATAPOINT_BORDER_DASH_NAME, cppu::UnoType<OUString>::get(), beans::PropertyAttribute::BOUND | beans::PropertyAttribute::MAYBEVOID )); |