Attached please find my amended patch for the removal of extra white
space lines in
filter/source/xmlfilteradaptor/genericfilter.cxx
MMeeks let me know how this looks if its good feel free to push
>From 744c48dd358a743118ba8cb1bf2162ca7d243df3 Mon Sep 17 00:00:00 2001
From: jonathan aquilina <jaquil...@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
_______________________________________________
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice