diff options
author | Tomaž Vajngerl <tomaz.vajngerl@collabora.co.uk> | 2018-05-17 20:17:53 +0900 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2018-05-20 15:43:06 +0200 |
commit | 84f30b34bf63dba8d5b478edac684bee5a841100 (patch) | |
tree | 40aa63e5528045c9f9be1216ae50e8817ba5ac68 /offapi | |
parent | 3a1f7ba6e55e372a3048312bd8b23daac08c3727 (diff) |
[API-CHANGE] change to GraphicBitmap prop. for NumberingLevel
To make it consistent, change "Graphic" property (added during
image handling rework) to "GraphicBitmap" in style::NumberingLevel,
which is already used in text::NumberingLevel. Both of them are
accessors for the graphic of bitmap bullets.
Change-Id: I70f7bccd80fa9949778c49e23de583c6fb32a796
Reviewed-on: https://gerrit.libreoffice.org/54492
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'offapi')
-rw-r--r-- | offapi/com/sun/star/style/NumberingLevel.idl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/offapi/com/sun/star/style/NumberingLevel.idl b/offapi/com/sun/star/style/NumberingLevel.idl index c7e700cc63d1..eb3cb92add03 100644 --- a/offapi/com/sun/star/style/NumberingLevel.idl +++ b/offapi/com/sun/star/style/NumberingLevel.idl @@ -67,8 +67,8 @@ published service NumberingLevel Note the new behaviour since it this was deprecated: This property can only be set and only external URLs are supported (no more vnd.sun.star.GraphicObject scheme). When an - URL is set, then it will load the graphic and set the Graphic - property. + URL is set, then it will load the graphic and set the + GraphicBitmap property. */ [property] string GraphicURL; @@ -76,11 +76,11 @@ published service NumberingLevel */ [property] short StartWith; - /** This is the graphic file to use as a symbol. + /** This is the graphic bitmap to use as a symbol. @since LibreOffice 6.1 */ - [optional, property] com::sun::star::graphic::XGraphic Graphic; + [optional, property] com::sun::star::awt::XBitmap GraphicBitmap; }; |