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 /wizards/com | |
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 'wizards/com')
-rw-r--r-- | wizards/com/sun/star/wizards/letter/LetterDocument.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wizards/com/sun/star/wizards/letter/LetterDocument.py b/wizards/com/sun/star/wizards/letter/LetterDocument.py index dd0484200113..5860f280418b 100644 --- a/wizards/com/sun/star/wizards/letter/LetterDocument.py +++ b/wizards/com/sun/star/wizards/letter/LetterDocument.py @@ -29,7 +29,7 @@ from com.sun.star.text.VertOrientation import NONE as NONEVERT from com.sun.star.text.RelOrientation import PAGE_FRAME from com.sun.star.text.TextContentAnchorType import AT_PAGE from com.sun.star.text.SizeType import FIX -from com.sun.star.text.WrapTextMode import THROUGHT +from com.sun.star.text.WrapTextMode import THROUGH from com.sun.star.awt.FontWeight import BOLD from com.sun.star.beans import UnknownPropertyException @@ -184,7 +184,7 @@ class BusinessPaperObject(object): self.xFrame.AnchorType = AT_PAGE self.xFrame.SizeType = FIX - self.xFrame.TextWrap = THROUGHT + self.xFrame.TextWrap = THROUGH self.xFrame.Opaque = True self.xFrame.BackColor = 15790320 |