summaryrefslogtreecommitdiff
path: root/sw/inc/ndindex.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-06-15 18:50:59 +0200
committerMichael Stahl <mstahl@redhat.com>2015-06-15 21:49:57 +0200
commit042dd163a95fa4a128a77f724748b5eb515be8cd (patch)
tree87b25c8e3712096b4e1bc47150bef97f4e63ebfc /sw/inc/ndindex.hxx
parentea7d6dc652c58721c3f07cc0c11864404ab48118 (diff)
sw: translate that
Change-Id: I08d8941a4c78b5e3307976476fc5c8762732a15c
Diffstat (limited to 'sw/inc/ndindex.hxx')
-rw-r--r--sw/inc/ndindex.hxx48
1 files changed, 24 insertions, 24 deletions
diff --git a/sw/inc/ndindex.hxx b/sw/inc/ndindex.hxx
index b06bd16e994a..0267e16dbff8 100644
--- a/sw/inc/ndindex.hxx
+++ b/sw/inc/ndindex.hxx
@@ -99,12 +99,12 @@ public:
inline bool operator==( const SwNodeIndex& ) const;
inline bool operator!=( const SwNodeIndex& ) const;
- inline bool operator< ( sal_uLong nWert ) const;
- inline bool operator<=( sal_uLong nWert ) const;
- inline bool operator> ( sal_uLong nWert ) const;
- inline bool operator>=( sal_uLong nWert ) const;
- inline bool operator==( sal_uLong nWert ) const;
- inline bool operator!=( sal_uLong nWert ) const;
+ inline bool operator< ( sal_uLong ) const;
+ inline bool operator<=( sal_uLong ) const;
+ inline bool operator> ( sal_uLong ) const;
+ inline bool operator>=( sal_uLong ) const;
+ inline bool operator==( sal_uLong ) const;
+ inline bool operator!=( sal_uLong ) const;
inline SwNodeIndex& operator=( sal_uLong );
inline SwNodeIndex& operator=( const SwNodeIndex& );
@@ -166,29 +166,29 @@ inline SwNodes& SwNodeIndex::GetNodes()
{
return m_pNode->GetNodes();
}
-inline bool SwNodeIndex::operator< ( sal_uLong nWert ) const
+inline bool SwNodeIndex::operator< ( sal_uLong const nOther ) const
{
- return m_pNode->GetIndex() < nWert;
+ return m_pNode->GetIndex() < nOther;
}
-inline bool SwNodeIndex::operator<=( sal_uLong nWert ) const
+inline bool SwNodeIndex::operator<=( sal_uLong const nOther ) const
{
- return m_pNode->GetIndex() <= nWert;
+ return m_pNode->GetIndex() <= nOther;
}
-inline bool SwNodeIndex::operator> ( sal_uLong nWert ) const
+inline bool SwNodeIndex::operator> ( sal_uLong const nOther ) const
{
- return m_pNode->GetIndex() > nWert;
+ return m_pNode->GetIndex() > nOther;
}
-inline bool SwNodeIndex::operator>=( sal_uLong nWert ) const
+inline bool SwNodeIndex::operator>=( sal_uLong const nOther ) const
{
- return m_pNode->GetIndex() >= nWert;
+ return m_pNode->GetIndex() >= nOther;
}
-inline bool SwNodeIndex::operator==( sal_uLong nWert ) const
+inline bool SwNodeIndex::operator==( sal_uLong const nOther ) const
{
- return m_pNode->GetIndex() == nWert;
+ return m_pNode->GetIndex() == nOther;
}
-inline bool SwNodeIndex::operator!=( sal_uLong nWert ) const
+inline bool SwNodeIndex::operator!=( sal_uLong const nOther ) const
{
- return m_pNode->GetIndex() != nWert;
+ return m_pNode->GetIndex() != nOther;
}
inline bool SwNodeIndex::operator<( const SwNodeIndex& rIndex ) const
{
@@ -238,14 +238,14 @@ inline sal_uLong SwNodeIndex::operator--(int)
return nOldIndex;
}
-inline sal_uLong SwNodeIndex::operator+=( sal_uLong nWert )
+inline sal_uLong SwNodeIndex::operator+=( sal_uLong const nOffset )
{
- m_pNode = GetNodes()[ m_pNode->GetIndex() + nWert ];
+ m_pNode = GetNodes()[ m_pNode->GetIndex() + nOffset ];
return m_pNode->GetIndex();
}
-inline sal_uLong SwNodeIndex::operator-=( sal_uLong nWert )
+inline sal_uLong SwNodeIndex::operator-=( sal_uLong const nOffset )
{
- m_pNode = GetNodes()[ m_pNode->GetIndex() - nWert ];
+ m_pNode = GetNodes()[ m_pNode->GetIndex() - nOffset ];
return m_pNode->GetIndex();
}
inline sal_uLong SwNodeIndex::operator+=( const SwNodeIndex& rIndex )
@@ -259,9 +259,9 @@ inline sal_uLong SwNodeIndex::operator-=( const SwNodeIndex& rIndex )
return m_pNode->GetIndex();
}
-inline SwNodeIndex& SwNodeIndex::operator=( sal_uLong nWert )
+inline SwNodeIndex& SwNodeIndex::operator=( sal_uLong const nNew )
{
- m_pNode = GetNodes()[ nWert ];
+ m_pNode = GetNodes()[ nNew ];
return *this;
}