diff options
author | Regényi Balázs <regenyi.balazs@nisz.hu> | 2020-09-22 17:12:59 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2020-09-29 12:26:25 +0200 |
commit | 79737c8b0d84d4967c5f1c41b740a8a52db8b551 (patch) | |
tree | 4bd2a23eab371f5a7977408d6ebaf7ae25a7bc61 /oox/inc | |
parent | 61291a63c0f9a57064300e7afc8222b4ae4e155a (diff) |
tdf#91251 XLSX textbox export: fix missing overflow properties
by grab-bagging them.
Co-authored-by: Szabolcs Toth
Change-Id: I242bf33e1272d913805c90a2ef902be8633618fb
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/103182
Tested-by: László Németh <nemeth@numbertext.org>
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'oox/inc')
-rw-r--r-- | oox/inc/drawingml/textbodyproperties.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/oox/inc/drawingml/textbodyproperties.hxx b/oox/inc/drawingml/textbodyproperties.hxx index 26e34ac6a5f7..8a51c2bb906e 100644 --- a/oox/inc/drawingml/textbodyproperties.hxx +++ b/oox/inc/drawingml/textbodyproperties.hxx @@ -46,6 +46,8 @@ struct TextBodyProperties sal_Int32 mnNumCol = 1; /// Normal autofit: font scale (default: 100%). sal_Int32 mnFontScale = 100000; + OUString msHorzOverflow; + OUString msVertOverflow; explicit TextBodyProperties(); |