summaryrefslogtreecommitdiff
path: root/sw/inc/ndindex.hxx
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2011-01-10 09:10:44 +0100
committerDavid Tardon <dtardon@redhat.com>2011-01-10 09:10:44 +0100
commit4cdcf19d7c2712d2eaa6efc440e22dc2fed4d419 (patch)
tree361ca699f88057450b3b4b8d895eb56824d2026d /sw/inc/ndindex.hxx
parent734a248a18c16f012ad614628ec9a6c014b6d74a (diff)
remove all mentions of cfront. Oh, my!
Diffstat (limited to 'sw/inc/ndindex.hxx')
-rw-r--r--sw/inc/ndindex.hxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/sw/inc/ndindex.hxx b/sw/inc/ndindex.hxx
index cc0300793f61..741e21782978 100644
--- a/sw/inc/ndindex.hxx
+++ b/sw/inc/ndindex.hxx
@@ -65,10 +65,8 @@ public:
inline ULONG operator++();
inline ULONG operator--();
-#ifndef CFRONT
inline ULONG operator++(int);
inline ULONG operator--(int);
-#endif
inline ULONG operator+=( ULONG );
inline ULONG operator-=( ULONG );
@@ -202,7 +200,6 @@ inline ULONG SwNodeIndex::operator--()
{
return ( pNd = GetNodes()[ pNd->GetIndex()-1 ] )->GetIndex();
}
-#ifndef CFRONT
inline ULONG SwNodeIndex::operator++(int)
{
ULONG nOldIndex = pNd->GetIndex();
@@ -215,7 +212,6 @@ inline ULONG SwNodeIndex::operator--(int)
pNd = GetNodes()[ nOldIndex - 1 ];
return nOldIndex;
}
-#endif
inline ULONG SwNodeIndex::operator+=( ULONG nWert )
{