summaryrefslogtreecommitdiff
path: root/sw/source/core/inc/ftnfrm.hxx
diff options
context:
space:
mode:
authorPhilipp Riemer <ruderphilipp@gmail.com>2012-06-02 19:41:10 +0200
committerNorbert Thiebaud <nthiebaud@gmail.com>2012-06-03 00:58:59 -0500
commit510f70015aba59d5bb4cc2ab9667c08676c37a78 (patch)
tree23e3f576df012edfe82d2adb24c50829145b437f /sw/source/core/inc/ftnfrm.hxx
parent9b43bf2ce3b947b494e076cad853d09a6e6d7544 (diff)
translate German comments in sw/source/core/inc/f*.hxx
Diffstat (limited to 'sw/source/core/inc/ftnfrm.hxx')
-rw-r--r--sw/source/core/inc/ftnfrm.hxx30
1 files changed, 14 insertions, 16 deletions
diff --git a/sw/source/core/inc/ftnfrm.hxx b/sw/source/core/inc/ftnfrm.hxx
index c73682a8f705..d78db52d1cff 100644
--- a/sw/source/core/inc/ftnfrm.hxx
+++ b/sw/source/core/inc/ftnfrm.hxx
@@ -35,12 +35,10 @@ class SwTxtFtn;
class SwBorderAttrs;
class SwFtnFrm;
-//Fuer Fussnoten gibt es einen Speziellen Bereich auf der Seite. Dieser
-//Bereich ist ein SwFtnContFrm.
-//Jede Fussnote ist durch einen SwFtnFrm abgegrenzt, dieser nimmt die
-//Fussnotenabsaetze auf. SwFtnFrm koennen aufgespalten werden, sie gehen
-//dann auf einer anderen Seite weiter.
-
+// There exists a special section on a page for footnotes. It's called
+// SwFtnContFrm. Each footnote is separated by a SwFtnFrm which contains
+// the paragraphs of a footnote. SwFtnFrm can be splitted and will then
+// continue on another page.
class SwFtnContFrm: public SwLayoutFrm
{
public:
@@ -59,17 +57,17 @@ public:
class SwFtnFrm: public SwLayoutFrm
{
- //Zeiger auf den FtnFrm in dem die Fussnote weitergefuehrt wird:
- // 0 wenn kein Follow vorhanden,
- // this beim letzten
- // der Follow sonst.
+ // Pointer to FtnFrm in which the footnote will be continued:
+ // - 0 no following existent
+ // - this for the last one
+ // - otherwise the following FtnFrm
SwFtnFrm *pFollow;
- SwFtnFrm *pMaster; //Der FtnFrm dessen Follow ich bin.
- SwCntntFrm *pRef; //In diesem CntntFrm steht die Fussnotenref.
- SwTxtFtn *pAttr; //Fussnotenattribut (zum wiedererkennen)
+ SwFtnFrm *pMaster; // FtnFrm from which I am the following
+ SwCntntFrm *pRef; // in this CntntFrm is the footnote reference
+ SwTxtFtn *pAttr; // footnote attribute (for recognition)
- sal_Bool bBackMoveLocked : 1; //Absaetze in dieser Fussnote duerfen derzeit
- //nicht rueckwaerts fliessen.
+ // if true paragraphs in this footnote are NOT permitted to flow backwards
+ sal_Bool bBackMoveLocked : 1;
// #i49383# - control unlock of position of lower anchored objects.
bool mbUnlockPosOfLowerObjs : 1;
#ifdef DBG_UTIL
@@ -120,7 +118,7 @@ public:
void UnlockBackMove() { bBackMoveLocked = sal_False;}
sal_Bool IsBackMoveLocked() { return bBackMoveLocked; }
- // Verhindert, dass der letzte Inhalt den SwFtnFrm mitloescht (Cut())
+ // prevents that the last content deletes the SwFtnFrm as well (Cut())
inline void ColLock() { bColLocked = sal_True; }
inline void ColUnlock() { bColLocked = sal_False; }