summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sw/inc/redline.hxx2
-rw-r--r--sw/inc/swevent.hxx2
-rw-r--r--sw/source/core/access/accfrmobjslist.hxx6
3 files changed, 0 insertions, 10 deletions
diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx
index a8be390b1490..ef7c8129ce6a 100644
--- a/sw/inc/redline.hxx
+++ b/sw/inc/redline.hxx
@@ -120,8 +120,6 @@ public:
( m_pExtraData && rCmp.m_pExtraData &&
*m_pExtraData == *rCmp.m_pExtraData ));
}
- bool operator!=( const SwRedlineData& rCmp ) const
- { return !operator==( rCmp ); }
RedlineType GetType() const { return m_eType; }
diff --git a/sw/inc/swevent.hxx b/sw/inc/swevent.hxx
index b25246cb2e12..62bd39429a13 100644
--- a/sw/inc/swevent.hxx
+++ b/sw/inc/swevent.hxx
@@ -99,8 +99,6 @@ struct SwCallMouseEvent final
PTR.pFormat == rEvent.PTR.pFormat &&
PTR.IMAP.pIMapObj == rEvent.PTR.IMAP.pIMapObj;
}
- bool operator!=( const SwCallMouseEvent& rEvent ) const
- { return !( *this == rEvent ); }
void Clear()
{
diff --git a/sw/source/core/access/accfrmobjslist.hxx b/sw/source/core/access/accfrmobjslist.hxx
index 9df293d71e2f..e4f3141f4275 100644
--- a/sw/source/core/access/accfrmobjslist.hxx
+++ b/sw/source/core/access/accfrmobjslist.hxx
@@ -52,12 +52,6 @@ public:
return m_aCurr == r.m_aCurr;
}
- bool operator!=(
- const SwAccessibleChildSList_const_iterator& r ) const
- {
- return !(*this == r);
- }
-
SwAccessibleChildSList_const_iterator& operator++();
const sw::access::SwAccessibleChild& operator*() const