diff options
author | Gülşah Köse <gulsah.kose@collabora.com> | 2020-11-12 01:52:15 +0300 |
---|---|---|
committer | Gülşah Köse <gulsah.kose@collabora.com> | 2020-11-14 22:06:22 +0100 |
commit | c9619a5f6c351ede0dbfb3cf07df0ac9b74c2992 (patch) | |
tree | 98f00e7cdc6a4c1c0f495621d597408856051fe9 /oox/inc | |
parent | 514a4f302f9f49db5a0b22cbe49bd98191296735 (diff) |
tdf#138148 Protect aspect ratio of graphic bullets.
Change-Id: I166d547cdc01853fd81436c6cdc8d64b0fe817be
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105618
Tested-by: Jenkins
Reviewed-by: Gülşah Köse <gulsah.kose@collabora.com>
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/drawingml/textparagraphproperties.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oox/inc/drawingml/textparagraphproperties.hxx b/oox/inc/drawingml/textparagraphproperties.hxx index 23a177d289f5..7dd41610024b 100644 --- a/oox/inc/drawingml/textparagraphproperties.hxx +++ b/oox/inc/drawingml/textparagraphproperties.hxx @@ -54,6 +54,7 @@ public: void setSuffixNone(); void setSuffixMinusRight(); void setBulletSize(sal_Int16 nSize); + void setBulletAspectRatio(double nAspectRatio); void setFontSize(sal_Int16 nSize); void setStyleName( const OUString& rStyleName ) { maStyleName <<= rStyleName; } void setGraphic( css::uno::Reference< css::graphic::XGraphic > const & rXGraphic ); @@ -68,6 +69,7 @@ public: css::uno::Any msNumberingPrefix; css::uno::Any msNumberingSuffix; css::uno::Any mnSize; + css::uno::Any mnAspectRatio; // Width/Height css::uno::Any mnFontSize; css::uno::Any maStyleName; css::uno::Any maGraphic; |