summaryrefslogtreecommitdiff
path: root/sw/inc/ring.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/inc/ring.hxx')
-rw-r--r--sw/inc/ring.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/ring.hxx b/sw/inc/ring.hxx
index 8637f4d43cd3..238067c22972 100644
--- a/sw/inc/ring.hxx
+++ b/sw/inc/ring.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -34,19 +34,19 @@
class SW_DLLPUBLIC Ring
{
Ring *pNext;
- Ring* pPrev; // zur Optimierung, damit das ein/ausketten schneller geht!
+ Ring* pPrev; // zur Optimierung, damit das ein/ausketten schneller geht!
protected:
- Ring() { pNext = this; pPrev = this; }
+ Ring() { pNext = this; pPrev = this; }
Ring( Ring * );
public:
virtual ~Ring();
void MoveTo( Ring *pDestRing );
void MoveRingTo( Ring *pDestRing );
- Ring* GetNext() const { return pNext; }
- Ring* GetPrev() const { return pPrev; }
-
+ Ring* GetNext() const { return pNext; }
+ Ring* GetPrev() const { return pPrev; }
+
sal_uInt32 numberOf() const;
};