diff options
author | Tim Richardson <tim@tim-richardson.net> | 2013-06-04 05:06:41 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2013-06-04 05:11:22 +0200 |
commit | c30a8f1738f8ef3ff842b27c54ef28891ce85d91 (patch) | |
tree | beccca0966dd3e1123f92e356013c8c2eef8157c | |
parent | 2d556a55b136b67fbc010d29ba7f98a8419d1470 (diff) |
use better values for OOXML border width, fdo#56960
Change-Id: Id735c7ef89411581f7bc8d7f10b3edfe8aba0c72
-rw-r--r-- | sc/source/filter/inc/stylesbuffer.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/filter/inc/stylesbuffer.hxx b/sc/source/filter/inc/stylesbuffer.hxx index 32b439c7b9cc..7108a4977f9c 100644 --- a/sc/source/filter/inc/stylesbuffer.hxx +++ b/sc/source/filter/inc/stylesbuffer.hxx @@ -65,10 +65,10 @@ const sal_Int32 OOX_COLOR_FONTAUTO = 0x7FFF; /// Font auto color (sys // ---------------------------------------------------------------------------- const sal_Int16 API_LINE_NONE = 0; -const sal_Int16 API_LINE_HAIR = 2; -const sal_Int16 API_LINE_THIN = 35; -const sal_Int16 API_LINE_MEDIUM = 88; -const sal_Int16 API_LINE_THICK = 141; +const sal_Int16 API_LINE_HAIR = 1; +const sal_Int16 API_LINE_THIN = 1; +const sal_Int16 API_LINE_MEDIUM = 35; +const sal_Int16 API_LINE_THICK = 53; const sal_Int16 API_ESCAPE_NONE = 0; /// No escapement. const sal_Int16 API_ESCAPE_SUPERSCRIPT = 101; /// Superscript: raise characters automatically (magic value 101). |