summaryrefslogtreecommitdiff
path: root/ucb/source/inc
diff options
context:
space:
mode:
authorAlexander Wilms <f.alexander.wilms@gmail.com>2014-02-25 22:38:20 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-02-26 07:31:08 -0600
commit060ab521fa0d5d6b9fcb97eab4718c04e8aec944 (patch)
tree398b92af90dbe2130f45969d2fd86a0922c0e2b9 /ucb/source/inc
parent482ab0d09620f92eb3618125930dc7c4c8335b5e (diff)
Remove visual noise from ucb
Conflicts: ucb/source/ucp/webdav/webdavdatasupplier.cxx ucb/source/ucp/webdav/webdavresponseparser.cxx Change-Id: I96b69f4867bbaaf42c3d5fd159cbb3e4fe80a4db Reviewed-on: https://gerrit.libreoffice.org/8329 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'ucb/source/inc')
-rw-r--r--ucb/source/inc/regexp.hxx2
-rw-r--r--ucb/source/inc/regexpmap.hxx18
2 files changed, 10 insertions, 10 deletions
diff --git a/ucb/source/inc/regexp.hxx b/ucb/source/inc/regexp.hxx
index ddee7c11314d..39c5f5b00813 100644
--- a/ucb/source/inc/regexp.hxx
+++ b/ucb/source/inc/regexp.hxx
@@ -22,7 +22,7 @@
#include <rtl/ustring.hxx>
-//============================================================================
+
namespace ucb_impl {
class Regexp
diff --git a/ucb/source/inc/regexpmap.hxx b/ucb/source/inc/regexpmap.hxx
index dc1f95d85416..0d5fcb7a318d 100644
--- a/ucb/source/inc/regexpmap.hxx
+++ b/ucb/source/inc/regexpmap.hxx
@@ -34,7 +34,7 @@ namespace ucb_impl {
template< typename Val > class RegexpMap;
template< typename Val > class RegexpMapIter;
-//============================================================================
+
template< typename Val >
class RegexpMapEntry
{
@@ -54,7 +54,7 @@ private:
Val * m_pValue;
};
-//============================================================================
+
template< typename Val >
struct Entry
@@ -66,10 +66,10 @@ struct Entry
m_aRegexp(rTheRegexp), m_aValue(rTheValue) {}
};
-//============================================================================
+
template< typename Val > class List: public std::list< Entry< Val > > {};
-//============================================================================
+
template< typename Val >
struct RegexpMapImpl
{
@@ -81,7 +81,7 @@ struct RegexpMapImpl
~RegexpMapImpl() { delete m_pDefault; }
};
-//============================================================================
+
template< typename Val >
class RegexpMapIterImpl
{
@@ -246,7 +246,7 @@ RegexpMapEntry< Val > & RegexpMapIterImpl< Val >::get()
return m_aEntry;
}
-//============================================================================
+
template< typename Val >
class RegexpMapConstIter
{
@@ -344,7 +344,7 @@ bool RegexpMapConstIter< Val >::equals(RegexpMapConstIter const & rOther)
return *m_pImpl == *rOther.m_pImpl;
}
-//============================================================================
+
template< typename Val >
class RegexpMapIter: public RegexpMapConstIter< Val >
{
@@ -413,7 +413,7 @@ RegexpMapEntry< Val > const * RegexpMapIter< Val >::operator ->() const
return &this->m_pImpl->get();
}
-//============================================================================
+
template< typename Val >
class RegexpMap
{
@@ -643,7 +643,7 @@ Val const * RegexpMap< Val >::map(rtl::OUString const & rString,
}
-//============================================================================
+
template< typename Val >
inline bool operator ==(ucb_impl::RegexpMapConstIter< Val > const & rIter1,
ucb_impl::RegexpMapConstIter< Val > const & rIter2)