summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorZolnai Tamás <tamas.zolnai@collabora.com>2014-05-30 13:45:36 +0200
committerZolnai Tamás <zolnaitamas2000@gmail.com>2014-05-30 08:03:19 -0500
commit5d3211ce2a84c31334bea370ddae654aee6b0380 (patch)
tree28a8adf2bfa161808122eafa68bae50c6095bfea /include
parent3988f17d14ee28b4bb117ca9961708ad3a867fb1 (diff)
bnc#870237: wrong text position in grouped list
In grouped list text area does not cover the whole shape but just a part of it at the top. To get the same visual effect modify text distance attribute. Change-Id: I32f30d0afbc1975f940c4562ec65f46596e97060 (cherry picked from commit 53c376d35b7223d53e8c9403390afe53d1f69089) Reviewed-on: https://gerrit.libreoffice.org/9571 Tested-by: Zolnai Tamás <zolnaitamas2000@gmail.com> Reviewed-by: Zolnai Tamás <zolnaitamas2000@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/oox/drawingml/textbodyproperties.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/oox/drawingml/textbodyproperties.hxx b/include/oox/drawingml/textbodyproperties.hxx
index e6f23d7561c6..e6ed0fc19011 100644
--- a/include/oox/drawingml/textbodyproperties.hxx
+++ b/include/oox/drawingml/textbodyproperties.hxx
@@ -37,8 +37,10 @@ struct TextBodyProperties
bool mbAnchorCtr;
OptValue< sal_Int32 > moVert;
boost::optional< sal_Int32 > moInsets[4];
- boost::optional< sal_Int32 > moTextOffX;
- boost::optional< sal_Int32 > moTextOffY;
+ boost::optional< sal_Int32 > moTextOffUpper;
+ boost::optional< sal_Int32 > moTextOffLeft;
+ boost::optional< sal_Int32 > moTextOffLower;
+ boost::optional< sal_Int32 > moTextOffRight;
::com::sun::star::drawing::TextVerticalAdjust meVA;
explicit TextBodyProperties();