Date: prev next · Thread: first prev next last
2011 Archives by date, by thread · List index


Attached please find my first patch to remove white space lines in the filter/source/xmlfilteradaptor/genericfilter.cxx

feedback is greatly appreciated.

Licensed under LGPLv3
From 744c48dd358a743118ba8cb1bf2162ca7d243df3 Mon Sep 17 00:00:00 2001
From: jonathan aquilina <jaquilina@eagleeyet.net>
Date: Tue, 18 Jan 2011 11:24:53 +0100
Subject: [PATCH] removed double line spacing

---
 filter/source/xmlfilteradaptor/genericfilter.cxx |   73 ----------------------
 1 files changed, 0 insertions(+), 73 deletions(-)

diff --git a/filter/source/xmlfilteradaptor/genericfilter.cxx 
b/filter/source/xmlfilteradaptor/genericfilter.cxx
index 9f4d5a0..3f037d9 100644
--- a/filter/source/xmlfilteradaptor/genericfilter.cxx
+++ b/filter/source/xmlfilteradaptor/genericfilter.cxx
@@ -28,153 +28,80 @@
 
 // MARKER(update_precomp.py): autogen include statement, do not remove
 #include "precompiled_filter.hxx"
-
 #include <stdio.h>
-
-
-
 #include <osl/mutex.hxx>
-
 #include <osl/thread.h>
-
 #include <cppuhelper/factory.hxx>
 
-
-
 #ifndef _COM_SUN_STAR_LANG_XSINGLESERVICEFACTORY_HPP_
-
 #include <com/sun/star/lang/XSingleServiceFactory.hpp>
-
 #endif
 
-
-
 #include "XmlFilterAdaptor.hxx"
 
 
 
 using namespace ::rtl;
-
 using namespace ::cppu;
-
 using namespace ::com::sun::star::uno;
-
 using namespace ::com::sun::star::lang;
-
 using namespace ::com::sun::star::registry;
 
-
-
 extern "C"
-
 {
-
 
//==================================================================================================
-
 void SAL_CALL component_getImplementationEnvironment(
-
     const sal_Char ** ppEnvTypeName, uno_Environment ** /* ppEnv */ )
-
 {
-
     *ppEnvTypeName = CPPU_CURRENT_LANGUAGE_BINDING_NAME;
-
 }
-
 
//==================================================================================================
-
 sal_Bool SAL_CALL component_writeInfo(
-
     void * /* pServiceManager */, void * pRegistryKey )
-
 {
-
     if (pRegistryKey)
-
     {
-
         try
-
         {
-
             Reference< XRegistryKey > xNewKey(
-
                 reinterpret_cast< XRegistryKey * >( pRegistryKey )->createKey( 
XmlFilterAdaptor_getImplementationName() ) ); 
-
             xNewKey = xNewKey->createKey( OUString( RTL_CONSTASCII_USTRINGPARAM( "/UNO/SERVICES" 
)) );
 
-            
-
             const Sequence< OUString > & rSNL = XmlFilterAdaptor_getSupportedServiceNames();
-
             const OUString * pArray = rSNL.getConstArray();
 
             for ( sal_Int32 nPos = rSNL.getLength(); nPos--; )
-
                 xNewKey->createKey( pArray[nPos] );
-
-
-
             return sal_True;
-
         }
-
         catch (InvalidRegistryException &)
-
         {
-
             OSL_ENSURE( sal_False, "### InvalidRegistryException!" );
-
         }
-
     }
-
     return sal_False;
-
 }
 
 
//==================================================================================================
 
 void * SAL_CALL component_getFactory(
-
     const sal_Char * pImplName, void * pServiceManager, void * /* pRegistryKey */ )
-
 {
-
     void * pRet = 0;
-
-    
-
     OUString implName = OUString::createFromAscii( pImplName );
-
     if ( pServiceManager && implName.equals(XmlFilterAdaptor_getImplementationName()) )
-
     {
-
         Reference< XSingleServiceFactory > xFactory( createSingleFactory(
-
             reinterpret_cast< XMultiServiceFactory * >( pServiceManager ),
-
             OUString::createFromAscii( pImplName ),
-
             XmlFilterAdaptor_createInstance, XmlFilterAdaptor_getSupportedServiceNames() ) );
-
-        
-
         if (xFactory.is())
-
         {
-
             xFactory->acquire();
-
             pRet = xFactory.get();
-
         }
-
     }
-
     return pRet;
-
 }
 
 }
-- 
1.7.1


Context


Privacy Policy | Impressum (Legal Info) | Copyright information: Unless otherwise specified, all text and images on this website are licensed under the Creative Commons Attribution-Share Alike 3.0 License. This does not include the source code of LibreOffice, which is licensed under the Mozilla Public License (MPLv2). "LibreOffice" and "The Document Foundation" are registered trademarks of their corresponding registered owners or are in actual use as trademarks in one or more countries. Their respective logos and icons are also subject to international copyright laws. Use thereof is explained in our trademark policy.