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 <tamas.zolnai@collabora.com>2014-05-31 14:02:46 +0200
commitfb19d682260134f14667f9647dd35e14d70316f2 (patch)
treee166594a3724999d51896c52d60dc4be2900979a /include
parentc2ac2ced0d51200a62f7436144f0d89cfcd15eed (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. (cherry picked from commit 53c376d35b7223d53e8c9403390afe53d1f69089) Conflicts: sd/qa/unit/import-tests.cxx Change-Id: I32f30d0afbc1975f940c4562ec65f46596e97060
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 af68f2064c2f..04195e97ff24 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();