diff options
author | Justin Luth <justin_luth@sil.org> | 2017-04-01 15:31:18 +0300 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-04-12 17:31:52 +0200 |
commit | 8913353a8fd2a1d281c2d8a33ca795d97201b7bc (patch) | |
tree | ff0cf6facf1a09bd638e8aea8a700fab46493d60 /sw/source/uibase/utlui | |
parent | 506cab1a01b0481d0831a7a692a26dc5a5b55e91 (diff) |
enum spelling: throught -> through
git grep -l "[ _\.]THROUGHT" | xargs sed -i 's/THROUGHT/THROUGH/g'
git grep -l -i "[ _\.]THROUGHT" | xargs sed -i 's/throught/through/g'
In ENUMs: THROUGHT = THROUGH (preserved as valid alternate spelling)
In ooxmlexport8 - unit test confirms THROUGH = THROUGHT
Change-Id: Iae0fef9a8adcb96761989f38903a24ffb1b91e77
Reviewed-on: https://gerrit.libreoffice.org/35998
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'sw/source/uibase/utlui')
-rw-r--r-- | sw/source/uibase/utlui/attrdesc.cxx | 4 | ||||
-rw-r--r-- | sw/source/uibase/utlui/attrdesc.hrc | 2 | ||||
-rw-r--r-- | sw/source/uibase/utlui/attrdesc.src | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/uibase/utlui/attrdesc.cxx b/sw/source/uibase/utlui/attrdesc.cxx index 271f442eaf65..4e327f4768d5 100644 --- a/sw/source/uibase/utlui/attrdesc.cxx +++ b/sw/source/uibase/utlui/attrdesc.cxx @@ -308,8 +308,8 @@ bool SwFormatSurround::GetPresentation case css::text::WrapTextMode_NONE: nId = STR_SURROUND_NONE; break; - case css::text::WrapTextMode_THROUGHT: - nId = STR_SURROUND_THROUGHT; + case css::text::WrapTextMode_THROUGH: + nId = STR_SURROUND_THROUGH; break; case css::text::WrapTextMode_PARALLEL: nId = STR_SURROUND_PARALLEL; diff --git a/sw/source/uibase/utlui/attrdesc.hrc b/sw/source/uibase/utlui/attrdesc.hrc index dafc3a921926..861f8215adb4 100644 --- a/sw/source/uibase/utlui/attrdesc.hrc +++ b/sw/source/uibase/utlui/attrdesc.hrc @@ -37,7 +37,7 @@ #define STR_HEADER (RC_ATTR_BEGIN + 13) #define STR_NO_HEADER (RC_ATTR_BEGIN + 14) #define STR_SURROUND_NONE (RC_ATTR_BEGIN + 15) -#define STR_SURROUND_THROUGHT (RC_ATTR_BEGIN + 16) +#define STR_SURROUND_THROUGH (RC_ATTR_BEGIN + 16) #define STR_SURROUND_PARALLEL (RC_ATTR_BEGIN + 17) #define STR_SURROUND_LEFT (RC_ATTR_BEGIN + 19) #define STR_SURROUND_RIGHT (RC_ATTR_BEGIN + 20) diff --git a/sw/source/uibase/utlui/attrdesc.src b/sw/source/uibase/utlui/attrdesc.src index 7e7e46409bdf..3bc55fa38e37 100644 --- a/sw/source/uibase/utlui/attrdesc.src +++ b/sw/source/uibase/utlui/attrdesc.src @@ -90,7 +90,7 @@ String STR_SURROUND_NONE { Text [ en-US ] = "No wrap" ; }; -String STR_SURROUND_THROUGHT +String STR_SURROUND_THROUGH { Text [ en-US ] = "Through" ; }; |