You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2020/07/17 16:46:08 UTC

[openoffice] branch trunk updated: Fixed typo, removed whitespace

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new fa3b5e9  Fixed typo, removed whitespace
fa3b5e9 is described below

commit fa3b5e9dad3f119b205a6f303c739be60bc7c85d
Author: mseidel <ms...@apache.org>
AuthorDate: Fri Jul 17 18:45:39 2020 +0200

    Fixed typo, removed whitespace
---
 .../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&deg;. Text that is rotated 270 &deg; is aligned to the center.
+	/** In automatic mode, horizontal text is aligned to the baseline. The same applies to
+		text that is rotated 90&deg;. Text that is rotated 270 &deg; 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;
 };
 
 //=============================================================================