From 6949629e35f308ce7efc890319ecf9a46a5f154c Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Tue, 28 Jul 2015 01:09:10 +0200 Subject: reflect the property name changes also in the idl files DataPoints now support the whole css::drawing::FillProperties properties which makes handling fill properties in chart2 a lot easier. The new names are just aliases for the old property names. Change-Id: I5b85010fe2557eeb5376de71ff3605b3abbcd488 --- chart2/source/model/main/DataPoint.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chart2') diff --git a/chart2/source/model/main/DataPoint.cxx b/chart2/source/model/main/DataPoint.cxx index 8f9ea9cb6384..c7876fd5bf77 100644 --- a/chart2/source/model/main/DataPoint.cxx +++ b/chart2/source/model/main/DataPoint.cxx @@ -284,7 +284,8 @@ void DataPoint::fireModifyEvent() Sequence< OUString > DataPoint::getSupportedServiceNames_Static() { - Sequence< OUString > aServices( 3 ); + Sequence< OUString > aServices( 4 ); + aServices[ 0 ] = "com.sun.star.drawing.FillProperties"; aServices[ 0 ] = "com.sun.star.chart2.DataPoint"; aServices[ 1 ] = "com.sun.star.chart2.DataPointProperties"; aServices[ 2 ] = "com.sun.star.beans.PropertySet"; -- cgit