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 --- offapi/com/sun/star/text/WrapTextMode.idl | 6 +++++- offapi/type_reference/offapi.idl | 3 ++- 2 files changed, 7 insertions(+), 2 deletions(-) (limited to 'offapi') diff --git a/offapi/com/sun/star/text/WrapTextMode.idl b/offapi/com/sun/star/text/WrapTextMode.idl index a65dd8fae8e8..6344b9579044 100644 --- a/offapi/com/sun/star/text/WrapTextMode.idl +++ b/offapi/com/sun/star/text/WrapTextMode.idl @@ -33,7 +33,11 @@ published enum WrapTextMode /** text flow ignores the object. */ - THROUGHT, + THROUGH, + + /** text flow ignores the object: errant spelling deprecated in version 5.4 + */ + THROUGHT = THROUGH, /** text flows to the left and right of the object. */ diff --git a/offapi/type_reference/offapi.idl b/offapi/type_reference/offapi.idl index c7268343d6f5..ebe12ed929e8 100644 --- a/offapi/type_reference/offapi.idl +++ b/offapi/type_reference/offapi.idl @@ -9758,7 +9758,8 @@ module com { }; published enum WrapTextMode { NONE = 0, - THROUGHT = 1, + THROUGH = 1, + THROUGHT = THROUGH, //Errant spelling deprecated in version 5.4 PARALLEL = 2, DYNAMIC = 3, LEFT = 4, -- cgit v1.2.3