[Libreoffice-commits] core.git: Branch 'private/kohei/double-border-fix' - offapi/com
Kohei Yoshida
kohei.yoshida at collabora.com
Tue Mar 4 16:44:27 PST 2014
offapi/com/sun/star/table/BorderLineStyle.idl | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
New commits:
commit 469c903848fe745dbf5e0c995ac9802615870c73
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Tue Mar 4 19:42:31 2014 -0500
Add a new double line type to deal with Excel's double border type.
Change-Id: Id5fba7a6f6882cfaf560a95ae714ad759f425113
diff --git a/offapi/com/sun/star/table/BorderLineStyle.idl b/offapi/com/sun/star/table/BorderLineStyle.idl
index 7613272..0c37c67 100644
--- a/offapi/com/sun/star/table/BorderLineStyle.idl
+++ b/offapi/com/sun/star/table/BorderLineStyle.idl
@@ -41,7 +41,8 @@ constants BorderLineStyle
*/
const short DASHED = 2;
- /** Double border line.
+ /** Double border line. Widths of the lines and the gap are all equal,
+ and vary equally with the total width.
*/
const short DOUBLE = 3;
@@ -95,9 +96,14 @@ constants BorderLineStyle
*/
const short FINE_DASHED = 14;
+ /** Double border line consisting of two fixed thin lines separated by a
+ variable gap.
+ */
+ const short DOUBLE_THIN = 15;
+
/** Maximum valid border line style value.
*/
- const short BORDER_LINE_STYLE_MAX = 14;
+ const short BORDER_LINE_STYLE_MAX = 15;
};
More information about the Libreoffice-commits
mailing list