From 8913353a8fd2a1d281c2d8a33ca795d97201b7bc Mon Sep 17 00:00:00 2001 From: Justin Luth Date: Sat, 1 Apr 2017 15:31:18 +0300 Subject: 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 Reviewed-by: Stephan Bergmann --- qadevOOo/runner/util/ValueChanger.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'qadevOOo/runner') diff --git a/qadevOOo/runner/util/ValueChanger.java b/qadevOOo/runner/util/ValueChanger.java index 3905b4485bc3..8a6c51936863 100644 --- a/qadevOOo/runner/util/ValueChanger.java +++ b/qadevOOo/runner/util/ValueChanger.java @@ -191,7 +191,7 @@ public class ValueChanger { com.sun.star.text.WrapTextMode WTM3 = com.sun.star.text.WrapTextMode.NONE; com.sun.star.text.WrapTextMode WTM4 = com.sun.star.text.WrapTextMode.PARALLEL; com.sun.star.text.WrapTextMode WTM5 = com.sun.star.text.WrapTextMode.RIGHT; - com.sun.star.text.WrapTextMode WTM6 = com.sun.star.text.WrapTextMode.THROUGHT; + com.sun.star.text.WrapTextMode WTM6 = com.sun.star.text.WrapTextMode.THROUGH; if (oldValue.equals(WTM1)) newValue = WTM2; if (oldValue.equals(WTM2)) -- cgit