diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-09 11:05:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-09 11:05:04 +0200 |
commit | 773aecc810b1b39c0c3cc78eabf03054c9d113f1 (patch) | |
tree | 5f5bfdc1c35aa8a25450b20f94174b1371036a60 /offapi | |
parent | 1f6b082388c7e1eaa668f02008488b317c0d4988 (diff) |
Avoid needless incompatible change
..in 9ed1dd01be8afa0961e388a79e9ff4c1235820c2 "tdf#90839: support for wrapped
text in data labels and for centered data value" by moving the additional
optional property to the end; also, add missing @since tags
Change-Id: I6f8a6cb22d29ba27a109089892b8df009d1043db
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/chart/ChartDataPointProperties.idl | 11 | ||||
-rw-r--r-- | offapi/com/sun/star/chart2/DataPointProperties.idl | 2 | ||||
-rw-r--r-- | offapi/type_reference/offapi.idl | 1 |
3 files changed, 8 insertions, 6 deletions
diff --git a/offapi/com/sun/star/chart/ChartDataPointProperties.idl b/offapi/com/sun/star/chart/ChartDataPointProperties.idl index 8b586dce08cf..06a3b4d92c2d 100644 --- a/offapi/com/sun/star/chart/ChartDataPointProperties.idl +++ b/offapi/com/sun/star/chart/ChartDataPointProperties.idl @@ -92,11 +92,6 @@ published service ChartDataPointProperties [optional, property] string LabelSeparator; - /** specifies if the text of a data label (caption) must be wrapped - */ - [optional, property] boolean TextWordWrap; - - /** specifies a number format for the display of the value in the data label */ [optional, property] long NumberFormat; @@ -138,6 +133,12 @@ published service ChartDataPointProperties percent of the radius. */ [optional, property] long SegmentOffset; + + /** specifies if the text of a data label (caption) must be wrapped + + @since LibreOffice 5.1 + */ + [optional, property] boolean TextWordWrap; }; diff --git a/offapi/com/sun/star/chart2/DataPointProperties.idl b/offapi/com/sun/star/chart2/DataPointProperties.idl index 090d08661e68..31bd0a42696c 100644 --- a/offapi/com/sun/star/chart2/DataPointProperties.idl +++ b/offapi/com/sun/star/chart2/DataPointProperties.idl @@ -263,6 +263,8 @@ service DataPointProperties [optional, property] string LabelSeparator; /** specifies if the text of a data label (caption) must be wrapped + + @since LibreOffice 5.1 */ [optional, property] boolean TextWordWrap; diff --git a/offapi/type_reference/offapi.idl b/offapi/type_reference/offapi.idl index 888180e03ff4..f95e6b7f1844 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -3136,7 +3136,6 @@ module com { interface ::com::sun::star::beans::XPropertySet; [property] long DataCaption; [property, optional] string LabelSeparator; - [property, optional] boolean TextWordWrap; [property, optional] long NumberFormat; [property, optional] long PercentageNumberFormat; [property, optional] long LabelPlacement; |