This is an automated email from the ASF dual-hosted git repository. mseidel pushed a commit to branch AOO42X in repository https://gitbox.apache.org/repos/asf/openoffice.git
The following commit(s) were added to refs/heads/AOO42X by this push: new 573f799 Fixed typo, removed whitespace 573f799 is described below commit 573f799a92f19f9edfd881c448523253482a0031 Author: mseidel <msei...@apache.org> AuthorDate: Fri Jul 17 18:45:39 2020 +0200 Fixed typo, removed whitespace (cherry picked from commit fa3b5e9dad3f119b205a6f303c739be60bc7c85d) --- .../com/sun/star/text/ParagraphVertAlign.idl | 38 +++++++++++----------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/main/offapi/com/sun/star/text/ParagraphVertAlign.idl b/main/offapi/com/sun/star/text/ParagraphVertAlign.idl index f12f41e..c2934fa 100644 --- a/main/offapi/com/sun/star/text/ParagraphVertAlign.idl +++ b/main/offapi/com/sun/star/text/ParagraphVertAlign.idl @@ -1,5 +1,5 @@ /************************************************************** - * + * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information @@ -7,16 +7,16 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. - * + * *************************************************************/ @@ -26,37 +26,37 @@ //============================================================================= - module com { module sun { module star { module text { + module com { module sun { module star { module text { //============================================================================= -/** These enumeration values are used to specify the vertical alignment of paragaphs. +/** These enumeration values are used to specify the vertical alignment of paragraphs. */ published constants ParagraphVertAlign { //------------------------------------------------------------------------- - /** In automatic mode, horizontal text is aligned to the baseline. The same applies to - text that is rotated 90°. Text that is rotated 270 ° is aligned to the center. + /** In automatic mode, horizontal text is aligned to the baseline. The same applies to + text that is rotated 90°. Text that is rotated 270 ° is aligned to the center. */ - const short AUTOMATIC = 0; - //------------------------------------------------------------------------- - /** The text is aligned to the baseline. + const short AUTOMATIC = 0; + //------------------------------------------------------------------------- + /** The text is aligned to the baseline. */ - const short BASELINE = 1; - //------------------------------------------------------------------------- - /** The text is aligned to the top. + const short BASELINE = 1; + //------------------------------------------------------------------------- + /** The text is aligned to the top. */ - const short TOP = 2; + const short TOP = 2; //------------------------------------------------------------------------- - /** The text is aligned to the center. + /** The text is aligned to the center. */ - const short CENTER = 3; + const short CENTER = 3; //------------------------------------------------------------------------- - /** The text is aligned to bottom. + /** The text is aligned to bottom. */ - const short BOTTOM = 4; + const short BOTTOM = 4; }; //=============================================================================