diff options
author | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-05-30 13:45:36 +0200 |
---|---|---|
committer | Zolnai Tamás <tamas.zolnai@collabora.com> | 2014-05-30 13:45:36 +0200 |
commit | 53c376d35b7223d53e8c9403390afe53d1f69089 (patch) | |
tree | 1c91c821cef7e0ef685403fdb4dd91993aadf1ec /include/oox | |
parent | 2b6f2beec6ceffbde287ebef295eb27bb7f35d00 (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
Diffstat (limited to 'include/oox')
-rw-r--r-- | include/oox/drawingml/textbodyproperties.hxx | 6 |
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(); |