summaryrefslogtreecommitdiff
path: root/ucb/source/inc
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/inc')
-rw-r--r--ucb/source/inc/regexp.hxx4
-rw-r--r--ucb/source/inc/regexpmap.hxx4
2 files changed, 4 insertions, 4 deletions
diff --git a/ucb/source/inc/regexp.hxx b/ucb/source/inc/regexp.hxx
index 75b17b59789b..69b4306cbbec 100644
--- a/ucb/source/inc/regexp.hxx
+++ b/ucb/source/inc/regexp.hxx
@@ -37,10 +37,10 @@ public:
inline bool operator ==(Regexp const & rOther) const;
- inline bool isDefault() const
+ bool isDefault() const
{ return m_eKind == KIND_PREFIX && m_aPrefix.isEmpty(); }
- inline Kind getKind() const { return m_eKind; }
+ Kind getKind() const { return m_eKind; }
bool matches(OUString const & rString) const;
diff --git a/ucb/source/inc/regexpmap.hxx b/ucb/source/inc/regexpmap.hxx
index f8f5450596a7..e9475f8a9684 100644
--- a/ucb/source/inc/regexpmap.hxx
+++ b/ucb/source/inc/regexpmap.hxx
@@ -39,7 +39,7 @@ template< typename Val >
class RegexpMapEntry
{
public:
- inline RegexpMapEntry(OUString const & rTheRegexp,
+ RegexpMapEntry(OUString const & rTheRegexp,
Val * pTheValue):
m_aRegexp(rTheRegexp), m_pValue(pTheValue) {}
@@ -61,7 +61,7 @@ struct Entry
Regexp m_aRegexp;
Val m_aValue;
- inline Entry(Regexp const & rTheRegexp, Val const & rTheValue):
+ Entry(Regexp const & rTheRegexp, Val const & rTheValue):
m_aRegexp(rTheRegexp), m_aValue(rTheValue) {}
};