diff options
author | László Németh <nemeth@numbertext.org> | 2019-05-29 16:36:41 +0200 |
---|---|---|
committer | László Németh <nemeth@numbertext.org> | 2019-06-03 16:12:27 +0200 |
commit | 32262b0a537207832d7d126d8427d8949b9e821d (patch) | |
tree | 84e61d097038ecadd77921df2a60f34cab88a343 /xmloff | |
parent | a2720a24328fcee3bde431dc632c068b266228c9 (diff) |
tdf#120412 char formatting UI: clean-up DFLT_ESC_AUTO
Default auto values must be outside of the new
enlarged range of the superscript/subscript percent values.
Note: the raising limit was modified to 13999 from 14400,
because the RTF unit test tdf112208_hangingIndent.rtf
lost its hanging from the bigger value.
Change-Id: I3a7e9715a27570278ee4ee70f9fc9ad29457e100
Reviewed-on: https://gerrit.libreoffice.org/73166
Tested-by: Jenkins
Reviewed-by: László Németh <nemeth@numbertext.org>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/style/escphdl.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/xmloff/source/style/escphdl.cxx b/xmloff/source/style/escphdl.cxx index f97ca6ee1f2f..f52c360d0865 100644 --- a/xmloff/source/style/escphdl.cxx +++ b/xmloff/source/style/escphdl.cxx @@ -28,10 +28,11 @@ using namespace ::com::sun::star; using namespace ::xmloff::token; -// this is a copy of defines in svx/inc/escpitem.hxx +// this is a copy of defines in include/editeng/escapementitem.hxx #define DFLT_ESC_PROP 58 -#define DFLT_ESC_AUTO_SUPER 101 -#define DFLT_ESC_AUTO_SUB -101 +#define MAX_ESC_POS 13999 +#define DFLT_ESC_AUTO_SUPER (MAX_ESC_POS+1) +#define DFLT_ESC_AUTO_SUB -DFLT_ESC_AUTO_SUPER // class XMLEscapementPropHdl |