summaryrefslogtreecommitdiff
path: root/configmgr
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-01-31 00:39:18 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-01-31 09:48:39 +0100
commit28fe6c99552c3dfb533b1ddf63e524fc6f8b4ebd (patch)
treeab161ab3a1a54bd562a9156cb3c7526c89f3ba39 /configmgr
parent6c59ac1eebc19429a201dec2df8a1e28c3ff98ce (diff)
Remove double line spacing.
Diffstat (limited to 'configmgr')
-rw-r--r--configmgr/qa/unit/test.cxx8
-rw-r--r--configmgr/source/access.hxx8
-rw-r--r--configmgr/source/childaccess.hxx6
-rw-r--r--configmgr/source/node.hxx6
-rw-r--r--configmgr/source/nodemap.hxx2
-rw-r--r--configmgr/source/xmlreader.hxx7
6 files changed, 0 insertions, 37 deletions
diff --git a/configmgr/qa/unit/test.cxx b/configmgr/qa/unit/test.cxx
index e3eb5a28bc68..fe8d29e9ef88 100644
--- a/configmgr/qa/unit/test.cxx
+++ b/configmgr/qa/unit/test.cxx
@@ -88,23 +88,15 @@ void normalize(
class Test: public CppUnit::TestFixture {
public:
virtual void setUp();
-
virtual void tearDown();
void testKeyFetch();
-
void testKeySet();
-
void testKeyReset();
-
void testSetSetMemberName();
-
void testReadCommands();
-
void testThreads();
-
void testRecursive();
-
void testCrossThreads();
css::uno::Any getKey(
diff --git a/configmgr/source/access.hxx b/configmgr/source/access.hxx
index 8a05329683be..bf314f2f6aca 100644
--- a/configmgr/source/access.hxx
+++ b/configmgr/source/access.hxx
@@ -130,15 +130,12 @@ public:
bool isValue();
void markChildAsModified(rtl::Reference< ChildAccess > const & child);
-
void releaseChild(rtl::OUString const & name);
virtual Path getAbsolutePath() = 0;
-
virtual Path getRelativePath() = 0;
virtual rtl::OUString getRelativePathRepresentation() = 0;
-
virtual rtl::Reference< Node > getNode() = 0;
virtual bool isFinalized() = 0;
@@ -155,9 +152,7 @@ protected:
virtual ~Access();
virtual rtl::OUString getNameInternal() = 0;
-
virtual rtl::Reference< RootAccess > getRootAccess() = 0;
-
virtual rtl::Reference< Access > getParentAccess() = 0;
virtual void addTypes(std::vector< com::sun::star::uno::Type > * types)
@@ -167,7 +162,6 @@ protected:
std::vector< rtl::OUString > * services) = 0;
virtual void initDisposeBroadcaster(Broadcaster * broadcaster);
-
virtual void clearListeners() throw ();
virtual com::sun::star::uno::Any SAL_CALL queryInterface(
@@ -179,9 +173,7 @@ protected:
void checkLocalizedPropertyAccess();
rtl::Reference< Node > getParentNode();
-
rtl::Reference< ChildAccess > getChild(rtl::OUString const & name);
-
std::vector< rtl::Reference< ChildAccess > > getAllChildren();
void checkValue(
diff --git a/configmgr/source/childaccess.hxx b/configmgr/source/childaccess.hxx
index 977d97e307dc..77fd5190aae8 100644
--- a/configmgr/source/childaccess.hxx
+++ b/configmgr/source/childaccess.hxx
@@ -77,11 +77,9 @@ public:
rtl::Reference< Node > const & node);
virtual Path getAbsolutePath();
-
virtual Path getRelativePath();
virtual rtl::OUString getRelativePathRepresentation();
-
virtual rtl::Reference< Node > getNode();
virtual bool isFinalized();
@@ -89,11 +87,9 @@ public:
virtual rtl::OUString getNameInternal();
virtual rtl::Reference< RootAccess > getRootAccess();
-
virtual rtl::Reference< Access > getParentAccess();
virtual void SAL_CALL acquire() throw ();
-
virtual void SAL_CALL release() throw ();
virtual com::sun::star::uno::Reference< com::sun::star::uno::XInterface >
@@ -119,9 +115,7 @@ public:
void unbind() throw ();
bool isInTransaction() const { return inTransaction_; }
-
void committed();
-
void setNode(rtl::Reference< Node > const & node);
void setProperty(
diff --git a/configmgr/source/node.hxx b/configmgr/source/node.hxx
index 4f4aece82b8e..27eea9c4642e 100644
--- a/configmgr/source/node.hxx
+++ b/configmgr/source/node.hxx
@@ -50,30 +50,24 @@ public:
virtual rtl::Reference< Node > clone(bool keepTemplateName) const = 0;
virtual NodeMap & getMembers();
-
virtual rtl::OUString getTemplateName() const;
virtual void setMandatory(int layer);
-
virtual int getMandatory() const;
void setLayer(int layer);
-
int getLayer() const;
void setFinalized(int layer);
-
int getFinalized() const;
rtl::Reference< Node > getMember(rtl::OUString const & name);
protected:
explicit Node(int layer);
-
Node(const Node & other);
virtual ~Node();
-
virtual void clear();
virtual rtl::Reference< Node > findMember(rtl::OUString const & name);
diff --git a/configmgr/source/nodemap.hxx b/configmgr/source/nodemap.hxx
index c2454e8df282..5e9e501e9fc7 100644
--- a/configmgr/source/nodemap.hxx
+++ b/configmgr/source/nodemap.hxx
@@ -30,9 +30,7 @@
#define INCLUDED_CONFIGMGR_SOURCE_NODEMAP_HXX
#include "sal/config.h"
-
#include <map>
-
#include "rtl/ref.hxx"
namespace rtl { class OUString; }
diff --git a/configmgr/source/xmlreader.hxx b/configmgr/source/xmlreader.hxx
index 9bb07592b679..c5436fea81f7 100644
--- a/configmgr/source/xmlreader.hxx
+++ b/configmgr/source/xmlreader.hxx
@@ -80,17 +80,13 @@ public:
private:
inline char read() { return pos_ == end_ ? '\0' : *pos_++; }
-
inline char peek() { return pos_ == end_ ? '\0' : *pos_; }
void normalizeLineEnds(Span const & text);
void skipSpace();
-
bool skipComment();
-
void skipProcessingInstruction();
-
void skipDocumentTypeDeclaration();
Span scanCdataSection();
@@ -105,15 +101,12 @@ private:
char const * begin, char const * end, bool fullyNormalize);
Result handleStartTag(Namespace * ns, Span * localName);
-
Result handleEndTag();
void handleElementEnd();
Result handleSkippedText(Span * data, Namespace * ns);
-
Result handleRawText(Span * text);
-
Result handleNormalizedText(Span * text);
struct NamespaceData {