diff options
author | Christoph Herzog <rhogez@googlemail.com> | 2011-04-25 20:33:33 +0200 |
---|---|---|
committer | Christoph Herzog <rhogez@googlemail.com> | 2011-04-25 20:33:33 +0200 |
commit | 5a032ac85835b9a9783ce3cd00dee420d65dc74b (patch) | |
tree | 4890c568ecf73b8660b3301f07848a4a1e00f307 /sw/inc/tabcol.hxx | |
parent | 38e39a9fa5a838bf37dbe1671d67c4a93d33bd2a (diff) |
Translation of German comments.
Diffstat (limited to 'sw/inc/tabcol.hxx')
-rw-r--r-- | sw/inc/tabcol.hxx | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/sw/inc/tabcol.hxx b/sw/inc/tabcol.hxx index 0de1142165aa..d9c3219b4481 100644 --- a/sw/inc/tabcol.hxx +++ b/sw/inc/tabcol.hxx @@ -41,31 +41,30 @@ struct SwTabColsEntry long nPos; long nMin; long nMax; - sal_Bool bHidden; //Fuer jeden Eintrag ein Flag, Hidden oder nicht. - //Wenn das Flag Hidden sal_True ist liegt der Spalten- - //trenner nicht in der aktuellen Zeile; er muss - //mit gepflegt werden, darf aber nicht angezeigt - //werden. + sal_Bool bHidden; // For each entry a flag, hidden or not. + // If the flag bHidden is sal_True column separator + // is not in current line. It must maintained + // but it may not be displayed. }; typedef std::vector< SwTabColsEntry > SwTabColsEntries; class SW_DLLPUBLIC SwTabCols { - long nLeftMin, //Linker aeusserer Rand (Bezugspunkt) in - //Dokumentkordinaten. - //Alle anderen Werte relativ zu diesem Punkt! - nLeft, //Linker Rand der Tabelle. - nRight, //Rechter Rand der Tabelle. - nRightMax; //Maximaler rechter Rand der Tabelle. - - bool bLastRowAllowedToChange; // if the last row of the table frame + long nLeftMin, // Leftmost border (reference point) for + // document coordinates. + // All other values are relative to this point! + nLeft, // Left border of table. + nRight, // Right border of table. + nRightMax; // Maximum right border of table. + + bool bLastRowAllowedToChange; // If the last row of the table frame // is split across pages, it may not - // change its size + // change its size. SwTabColsEntries aData; - //fuer den CopyCTor + //For the CopyCTor. const SwTabColsEntries& GetData() const { return aData; } public: |