From c9619a5f6c351ede0dbfb3cf07df0ac9b74c2992 Mon Sep 17 00:00:00 2001 From: Gülşah Köse Date: Thu, 12 Nov 2020 01:52:15 +0300 Subject: tdf#138148 Protect aspect ratio of graphic bullets. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I166d547cdc01853fd81436c6cdc8d64b0fe817be Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105618 Tested-by: Jenkins Reviewed-by: Gülşah Köse --- oox/inc/drawingml/textparagraphproperties.hxx | 2 ++ 1 file changed, 2 insertions(+) (limited to 'oox/inc') 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; -- cgit