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 2019/08/28 22:24:35 UTC

[openoffice] branch AOO42X updated: Removed whitespace, fixed typo

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 09aa71a  Removed whitespace, fixed typo
09aa71a is described below

commit 09aa71a007ef67f01f047b471e84dfac3bab8f9e
Author: mseidel <ms...@apache.org>
AuthorDate: Thu Aug 29 00:22:12 2019 +0200

    Removed whitespace, fixed typo
    
    (cherry picked from commit d02d0ad035d26945db032c45cbb0ed901fe263d8)
---
 main/offapi/com/sun/star/awt/XBitmap.idl | 85 ++++++++++++++++----------------
 1 file changed, 43 insertions(+), 42 deletions(-)

diff --git a/main/offapi/com/sun/star/awt/XBitmap.idl b/main/offapi/com/sun/star/awt/XBitmap.idl
index e314ad8..015dddc 100644
--- a/main/offapi/com/sun/star/awt/XBitmap.idl
+++ b/main/offapi/com/sun/star/awt/XBitmap.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,63 +7,64 @@
  * 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.
- * 
+ *
  *************************************************************/
 
 
-#ifndef __com_sun_star_awt_XBitmap_idl__ 
-#define __com_sun_star_awt_XBitmap_idl__ 
- 
-#ifndef __com_sun_star_uno_XInterface_idl__ 
-#include <com/sun/star/uno/XInterface.idl> 
-#endif 
- 
-#ifndef __com_sun_star_awt_Size_idl__ 
-#include <com/sun/star/awt/Size.idl> 
-#endif 
- 
- 
-//============================================================================= 
- 
- module com {  module sun {  module star {  module awt {  
- 
-//============================================================================= 
- 
+
+#ifndef __com_sun_star_awt_XBitmap_idl__
+#define __com_sun_star_awt_XBitmap_idl__
+
+#ifndef __com_sun_star_uno_XInterface_idl__
+#include <com/sun/star/uno/XInterface.idl>
+#endif
+
+#ifndef __com_sun_star_awt_Size_idl__
+#include <com/sun/star/awt/Size.idl>
+#endif
+
+
+//=============================================================================
+
+ module com { module sun { module star { module awt {
+
+//=============================================================================
+
 /** provides a bitmap in the Microsoft DIB format.
  */
 published interface XBitmap: com::sun::star::uno::XInterface
-{ 
-	//------------------------------------------------------------------------- 
-	 
+{
+	//-------------------------------------------------------------------------
+
 	/** returns the size of the bitmap in pixel.
 	 */
-	com::sun::star::awt::Size getSize(); 
- 
-	//------------------------------------------------------------------------- 
-	 
+	com::sun::star::awt::Size getSize();
+
+	//-------------------------------------------------------------------------
+
 	/** returns the device independent bitmap.
 	 */
-	sequence<byte> getDIB(); 
- 
-	//------------------------------------------------------------------------- 
-	 
-	/** returns the transparence mask of the device independent bitmap.
+	sequence<byte> getDIB();
+
+	//-------------------------------------------------------------------------
+
+	/** returns the transparency mask of the device independent bitmap.
 	 */
-	sequence<byte> getMaskDIB(); 
- 
-}; 
- 
-//============================================================================= 
- 
-}; }; }; };  
- 
+	sequence<byte> getMaskDIB();
+
+};
+
+//=============================================================================
+
+}; }; }; };
+
 #endif