summaryrefslogtreecommitdiff
path: root/vbahelper
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2019-08-27 20:08:41 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-08-28 07:18:11 +0200
commit1c539c548b662104431e283aa4a62cb81174380b (patch)
treeca6483553c045769c04dd38aad92a25bbdeb1a27 /vbahelper
parent0fb2927a8fe06e6c3255544b8e4c4c9c0f5a67d3 (diff)
Typo: HAPICOLOR_WITHE->HAPICOLOR_WHITE (vbahelper)
Change-Id: I51a43e190345a1e981f9bd524d8b2feaf0eb2521 Reviewed-on: https://gerrit.libreoffice.org/78207 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbacolorformat.cxx2
-rw-r--r--vbahelper/source/vbahelper/vbacolorformat.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbacolorformat.cxx b/vbahelper/source/vbahelper/vbacolorformat.cxx
index 7c72c65a1eeb..653d0db23a2a 100644
--- a/vbahelper/source/vbahelper/vbacolorformat.cxx
+++ b/vbahelper/source/vbahelper/vbacolorformat.cxx
@@ -27,7 +27,7 @@ sal_Int32
MsoColorIndices::getColorIndex( sal_Int32 nIndex )
{
const static sal_Int32 COLORINDICES[56] =
- { HAPICOLOR_BLACK, HAPICOLOR_WITHE, HAPICOLOR_RED, HAPICOLOR_BRIGHTGREEN, HAPICOLOR_BLUE, HAPICOLOR_YELLOW, HAPICOLOR_PINK,
+ { HAPICOLOR_BLACK, HAPICOLOR_WHITE, HAPICOLOR_RED, HAPICOLOR_BRIGHTGREEN, HAPICOLOR_BLUE, HAPICOLOR_YELLOW, HAPICOLOR_PINK,
HAPICOLOR_TURQUOISE, HAPICOLOR_DARKRED, HAPICOLOR_GREEN, HAPICOLOR_DARKBLUE, HAPICOLOR_DARKYELLOW, HAPICOLOR_VIOLET,
HAPICOLOR_TEAL, HAPICOLOR_GRAY_25_PERCENT, HAPICOLOR_GRAY_50_PERCENT, HAPICOLOR_PERIWINCKLE, HAPICOLOR_PLUM,
HAPICOLOR_IVORY, HAPICOLOR_LIGHTTURQUOISE, HAPICOLOR_DARKPRUPLE, HAPICOLOR_CORAL, HAPICOLOR_OCEANBLUE, HAPICOLOR_ICEBLUE,
diff --git a/vbahelper/source/vbahelper/vbacolorformat.hxx b/vbahelper/source/vbahelper/vbacolorformat.hxx
index d1573a0f0b5d..746c87c9fadc 100644
--- a/vbahelper/source/vbahelper/vbacolorformat.hxx
+++ b/vbahelper/source/vbahelper/vbacolorformat.hxx
@@ -40,7 +40,7 @@ public:
struct MsoColorIndices
{
const static sal_Int32 HAPICOLOR_BLACK = 0;
- const static sal_Int32 HAPICOLOR_WITHE = 16777215;
+ const static sal_Int32 HAPICOLOR_WHITE = 16777215;
const static sal_Int32 HAPICOLOR_RED = 16711680;
const static sal_Int32 HAPICOLOR_BRIGHTGREEN = 65280;
const static sal_Int32 HAPICOLOR_BLUE = 255;