summaryrefslogtreecommitdiff
path: root/include/ucbhelper
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 /include/ucbhelper
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 'include/ucbhelper')
-rw-r--r--include/ucbhelper/activedatastreamer.hxx1
-rw-r--r--include/ucbhelper/content.hxx2
-rw-r--r--include/ucbhelper/contenthelper.hxx1
-rw-r--r--include/ucbhelper/contentidentifier.hxx1
-rw-r--r--include/ucbhelper/contentinfo.hxx4
-rw-r--r--include/ucbhelper/macros.hxx7
-rw-r--r--include/ucbhelper/propertyvalueset.hxx1
-rw-r--r--include/ucbhelper/providerhelper.hxx2
-rw-r--r--include/ucbhelper/resultset.hxx3
-rw-r--r--include/ucbhelper/resultsethelper.hxx2
-rw-r--r--include/ucbhelper/resultsetmetadata.hxx2
11 files changed, 0 insertions, 26 deletions
diff --git a/include/ucbhelper/activedatastreamer.hxx b/include/ucbhelper/activedatastreamer.hxx
index af6bae2ea8b9..4516c3bab2e6 100644
--- a/include/ucbhelper/activedatastreamer.hxx
+++ b/include/ucbhelper/activedatastreamer.hxx
@@ -27,7 +27,6 @@ namespace ucbhelper
{
-
/**
* This class implements the interface css::io::XActiveDataStreamer.
* Instances of this class can be passed with the parameters of an
diff --git a/include/ucbhelper/content.hxx b/include/ucbhelper/content.hxx
index 7715470d58c1..e31a95d2af04 100644
--- a/include/ucbhelper/content.hxx
+++ b/include/ucbhelper/content.hxx
@@ -61,7 +61,6 @@ namespace ucbhelper
{
-
/**
* These are the possible values for the parameter eMode of method
* ucbhelper::Content::createCursor.
@@ -86,7 +85,6 @@ enum InsertOperation
};
-
class Content_Impl;
/**
diff --git a/include/ucbhelper/contenthelper.hxx b/include/ucbhelper/contenthelper.hxx
index 91cf9934ae94..58dbc00feb45 100644
--- a/include/ucbhelper/contenthelper.hxx
+++ b/include/ucbhelper/contenthelper.hxx
@@ -58,7 +58,6 @@ namespace ucbhelper
{
-
class ContentProviderImplHelper;
/**
diff --git a/include/ucbhelper/contentidentifier.hxx b/include/ucbhelper/contentidentifier.hxx
index 702febc060ee..25969f17ae4e 100644
--- a/include/ucbhelper/contentidentifier.hxx
+++ b/include/ucbhelper/contentidentifier.hxx
@@ -33,7 +33,6 @@ namespace ucbhelper
struct ContentIdentifier_Impl;
-
/**
* This class implements a simple identifier object for UCB contents.
* It mainly stores and returns the URL as it was passed to the constructor -
diff --git a/include/ucbhelper/contentinfo.hxx b/include/ucbhelper/contentinfo.hxx
index 929a9202c849..acf778e1c8af 100644
--- a/include/ucbhelper/contentinfo.hxx
+++ b/include/ucbhelper/contentinfo.hxx
@@ -32,11 +32,9 @@
namespace ucbhelper {
-
// class PropertySetInfo.
-
class ContentImplHelper;
/**
@@ -100,11 +98,9 @@ public:
};
-
// class CommandProcessorInfo.
-
/**
* This class provides a command info ( the complete implementation of
* the interface XCommandInfo ) for an object derived from class
diff --git a/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx
index 4a4ead773d79..483be3405336 100644
--- a/include/ucbhelper/macros.hxx
+++ b/include/ucbhelper/macros.hxx
@@ -31,14 +31,12 @@
#include <ucbhelper/getcomponentcontext.hxx>
-
#define CPPU_TYPE( T ) cppu::UnoType<T>::get()
#define CPPU_TYPE_REF( T ) CPPU_TYPE( T )
// XTypeProvider impl. internals
-
#define XTYPEPROVIDER_COMMON_IMPL( Class ) \
css::uno::Sequence< sal_Int8 > SAL_CALL \
Class::getImplementationId() \
@@ -69,11 +67,9 @@ Class::getTypes() \
}
-
// XTypeProvider impl.
-
// 2 interfaces supported
#define XTYPEPROVIDER_IMPL_2( Class, I1,I2 ) \
XTYPEPROVIDER_COMMON_IMPL( Class ) \
@@ -163,7 +159,6 @@ GETTYPES_IMPL_END
// XServiceInfo impl. internals
-
#define XSERVICEINFO_COMMOM_IMPL( Class, ImplName ) \
OUString SAL_CALL Class::getImplementationName() \
throw( css::uno::RuntimeException, std::exception ) \
@@ -211,11 +206,9 @@ Class##_CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFacto
}
-
// XServiceInfo impl.
-
#define ONE_INSTANCE_SERVICE_FACTORY_IMPL( Class ) \
css::uno::Reference< css::lang::XSingleServiceFactory > \
Class::createServiceFactory( const css::uno::Reference< css::lang::XMultiServiceFactory >& rxServiceMgr ) \
diff --git a/include/ucbhelper/propertyvalueset.hxx b/include/ucbhelper/propertyvalueset.hxx
index 691936286df6..8781a7d81725 100644
--- a/include/ucbhelper/propertyvalueset.hxx
+++ b/include/ucbhelper/propertyvalueset.hxx
@@ -44,7 +44,6 @@ namespace ucbhelper {
class PropertyValues;
-
/**
* This class implements the interface XRow. After construction of a valueset
* the user can append properties ( incl. its values ) to the set. This class
diff --git a/include/ucbhelper/providerhelper.hxx b/include/ucbhelper/providerhelper.hxx
index 385338b14197..ab0dca5a73d7 100644
--- a/include/ucbhelper/providerhelper.hxx
+++ b/include/ucbhelper/providerhelper.hxx
@@ -34,7 +34,6 @@
#include <ucbhelper/ucbhelperdllapi.h>
-
namespace com { namespace sun { namespace star { namespace ucb {
class XPropertySetRegistry;
class XPersistentPropertySet;
@@ -45,7 +44,6 @@ namespace ucbhelper_impl { struct ContentProviderImplHelper_Impl; }
namespace ucbhelper {
-
class ContentImplHelper;
typedef rtl::Reference< ContentImplHelper > ContentImplHelperRef;
typedef std::list< ContentImplHelperRef > ContentRefList;
diff --git a/include/ucbhelper/resultset.hxx b/include/ucbhelper/resultset.hxx
index 63dec4212149..4f002deb9620 100644
--- a/include/ucbhelper/resultset.hxx
+++ b/include/ucbhelper/resultset.hxx
@@ -42,11 +42,9 @@
namespace ucbhelper {
-
#define RESULTSET_SERVICE_NAME "com.sun.star.ucb.ContentResultSet"
-
class ResultSetDataSupplier;
struct ResultSet_Impl;
@@ -414,7 +412,6 @@ public:
};
-
/**
* This is the base class for an object that supplies data to a result set
*
diff --git a/include/ucbhelper/resultsethelper.hxx b/include/ucbhelper/resultsethelper.hxx
index e43a2e6857be..f34b8666768c 100644
--- a/include/ucbhelper/resultsethelper.hxx
+++ b/include/ucbhelper/resultsethelper.hxx
@@ -38,11 +38,9 @@ namespace cppu {
namespace ucbhelper {
-
#define DYNAMICRESULTSET_SERVICE_NAME "com.sun.star.ucb.DynamicResultSet"
-
/**
* This is an abstract base class for implementations of the service
* com.sun.star.ucb.DynamicResultSet, which is the result of the command
diff --git a/include/ucbhelper/resultsetmetadata.hxx b/include/ucbhelper/resultsetmetadata.hxx
index cda709eb045e..9ac6996f4a97 100644
--- a/include/ucbhelper/resultsetmetadata.hxx
+++ b/include/ucbhelper/resultsetmetadata.hxx
@@ -44,7 +44,6 @@ namespace ucbhelper
{
-
/**
* This is a structure that holds additional meta data for one column
* of a resultset. The default values set in the constructor should be a
@@ -129,7 +128,6 @@ ResultSetColumnData::ResultSetColumnData()
}
-
/**
* This is an implementation of the interface XResultSetMetaData. It can be
* used to implement the interface