summaryrefslogtreecommitdiffstats
path: root/cui
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-03-18 23:28:42 -0400
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-03-19 00:28:16 -0400
commit402fffa1b42e8b54704bab5442590d192dea67ca (patch)
tree441a1df96a103551ee949942516b3328059c3cc9 /cui
parentthe type in the Any is a util::Date and not a DateTime, fdo#74549 (diff)
downloadcore-402fffa1b42e8b54704bab5442590d192dea67ca.tar.gz
core-402fffa1b42e8b54704bab5442590d192dea67ca.zip
Add dash-dot and dash-dot-dot line styles.
We need these for Excel interop. Change-Id: I91450c1d205f28636edfb4392aa6ae5091b1d7b7
Diffstat (limited to 'cui')
-rw-r--r--cui/source/tabpages/border.cxx10
1 files changed, 6 insertions, 4 deletions
diff --git a/cui/source/tabpages/border.cxx b/cui/source/tabpages/border.cxx
index 869bf09d1d39..8466aa635067 100644
--- a/cui/source/tabpages/border.cxx
+++ b/cui/source/tabpages/border.cxx
@@ -1038,10 +1038,12 @@ void SvxBorderTabPage::FillLineListBox_Impl()
LineListBox::ColorDistFunc mpColorDistFn;
} aLines[] = {
// Simple lines
- { SOLID, 0, &sameColor, &sameColor, &sameDistColor },
- { DOTTED, 0, &sameColor, &sameColor, &sameDistColor },
- { DASHED, 0, &sameColor, &sameColor, &sameDistColor },
- { FINE_DASHED, 0, &sameColor, &sameColor, &sameDistColor },
+ { SOLID, 0, &sameColor, &sameColor, &sameDistColor },
+ { DOTTED, 0, &sameColor, &sameColor, &sameDistColor },
+ { DASHED, 0, &sameColor, &sameColor, &sameDistColor },
+ { FINE_DASHED, 0, &sameColor, &sameColor, &sameDistColor },
+ { DASH_DOT, 0, &sameColor, &sameColor, &sameDistColor },
+ { DASH_DOT_DOT, 0, &sameColor, &sameColor, &sameDistColor },
// Double lines
{ DOUBLE, 10, &sameColor, &sameColor, &sameDistColor },