diff options
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/ring.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/inc/ring.hxx b/sw/inc/ring.hxx index 53b271d36124..8796dd0e50d5 100644 --- a/sw/inc/ring.hxx +++ b/sw/inc/ring.hxx @@ -188,7 +188,7 @@ namespace sw void increment() { m_pCurrent = m_pCurrent ? m_pCurrent->GetNext() : m_pStart->GetNext(); } bool equal(RingIterator const& other) const - { return m_pCurrent == other.m_pCurrent && m_pStart == m_pStart; } + { return m_pCurrent == other.m_pCurrent && m_pStart == other.m_pStart; } T& dereference() const { return m_pCurrent ? *m_pCurrent : * m_pStart; } /** |