summaryrefslogtreecommitdiff
path: root/ucb/source/core/provprox.cxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 18:16:42 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 08:18:05 +0000
commita238b1f8d304bf1e2ffb357937f3ec888ee8ac89 (patch)
tree083c0582d4bf80e313ed256ca476ba8f69c7f7a6 /ucb/source/core/provprox.cxx
parent538f276ae0414ea34ede6090b5f56e8fecd6fc65 (diff)
Remove excess newlines
A ridiculously fast way of doing this is: for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \ --exclude-dir=workdir --exclude-dir=instdir '^ {3,}' .) do perl -0777 -i -pe 's/^ {3,}/ /gm' $i done Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c Reviewed-on: https://gerrit.libreoffice.org/22224 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'ucb/source/core/provprox.cxx')
-rw-r--r--ucb/source/core/provprox.cxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/ucb/source/core/provprox.cxx b/ucb/source/core/provprox.cxx
index 438f0c8c7959..e1df4274b744 100644
--- a/ucb/source/core/provprox.cxx
+++ b/ucb/source/core/provprox.cxx
@@ -28,14 +28,9 @@ using namespace com::sun::star::ucb;
using namespace com::sun::star::uno;
-
-
-
// UcbContentProviderProxyFactory Implementation.
-
-
UcbContentProviderProxyFactory::UcbContentProviderProxyFactory(
const Reference< XMultiServiceFactory >& rxSMgr )
: m_xSMgr( rxSMgr )
@@ -51,25 +46,20 @@ UcbContentProviderProxyFactory::~UcbContentProviderProxyFactory()
// XServiceInfo methods.
-
XSERVICEINFO_IMPL_1( UcbContentProviderProxyFactory,
OUString( "com.sun.star.comp.ucb.UcbContentProviderProxyFactory" ),
"com.sun.star.ucb.ContentProviderProxyFactory" );
-
// Service factory implementation.
-
ONE_INSTANCE_SERVICE_FACTORY_IMPL( UcbContentProviderProxyFactory );
-
// XContentProviderFactory methods.
-
// virtual
Reference< XContentProvider > SAL_CALL
UcbContentProviderProxyFactory::createContentProvider(
@@ -81,13 +71,9 @@ UcbContentProviderProxyFactory::createContentProvider(
}
-
-
// UcbContentProviderProxy Implementation.
-
-
UcbContentProviderProxy::UcbContentProviderProxy(
const Reference< XMultiServiceFactory >& rxSMgr,
const OUString& Service )
@@ -146,15 +132,12 @@ UcbContentProviderProxy::queryInterface( const Type & rType )
}
-
// XTypeProvider methods.
-
XTYPEPROVIDER_COMMON_IMPL( UcbContentProviderProxy );
-
Sequence< Type > SAL_CALL UcbContentProviderProxy::getTypes() \
throw( RuntimeException, std::exception )
{
@@ -178,11 +161,9 @@ Sequence< Type > SAL_CALL UcbContentProviderProxy::getTypes()
}
-
// XServiceInfo methods.
-
XSERVICEINFO_NOFACTORY_IMPL_1( UcbContentProviderProxy,
OUString( "com.sun.star.comp.ucb.UcbContentProviderProxy" ),
"com.sun.star.ucb.ContentProviderProxy" );
@@ -191,7 +172,6 @@ XSERVICEINFO_NOFACTORY_IMPL_1( UcbContentProviderProxy,
// XContentProvider methods.
-
// virtual
Reference< XContent > SAL_CALL UcbContentProviderProxy::queryContent(
const Reference< XContentIdentifier >& Identifier )
@@ -230,11 +210,9 @@ sal_Int32 SAL_CALL UcbContentProviderProxy::compareContentIds(
}
-
// XParameterizedContentProvider methods.
-
// virtual
Reference< XContentProvider > SAL_CALL
UcbContentProviderProxy::registerInstance( const OUString& Template,
@@ -295,11 +273,9 @@ UcbContentProviderProxy::deregisterInstance( const OUString& Template,
}
-
// XContentProviderSupplier methods.
-
// virtual
Reference< XContentProvider > SAL_CALL
UcbContentProviderProxy::getContentProvider()