summaryrefslogtreecommitdiff
path: root/sw
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2019-08-10 17:17:57 +0900
committerTomaž Vajngerl <quikee@gmail.com>2019-08-13 00:23:46 +0200
commit442431b1ef78431df33b6b6e308a689adc998f74 (patch)
tree184a23b7745133b45517423476b04eb34c7aa727 /sw
parent52d87ec0046d002ee67482671ad67bf5b9b4268b (diff)
sw: clean-up SwTabCols header a bit, no chnage
Change-Id: Ifd42ef5ba86edd75f208d540d02970b3f5c67745 Reviewed-on: https://gerrit.libreoffice.org/77364 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'sw')
-rw-r--r--sw/inc/tabcol.hxx34
1 files changed, 17 insertions, 17 deletions
diff --git a/sw/inc/tabcol.hxx b/sw/inc/tabcol.hxx
index 79c501a014ba..0a4a990c378c 100644
--- a/sw/inc/tabcol.hxx
+++ b/sw/inc/tabcol.hxx
@@ -26,29 +26,29 @@
struct SwTabColsEntry
{
- long nPos;
- long nMin;
- long nMax;
- bool bHidden; // For each entry a flag, hidden or not.
- // If the flag bHidden is true column separator
- // is not in current line. It must maintained
- // but it may not be displayed.
+ long nPos;
+ long nMin;
+ long nMax;
+ bool bHidden; // For each entry a flag, hidden or not.
+ // If the flag bHidden is 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 m_nLeftMin, // Leftmost border (reference point) for
- // document coordinates.
- // All other values are relative to this point!
- m_nLeft, // Left border of table.
- m_nRight, // Right border of table.
- m_nRightMax; // Maximum right border of table.
-
- bool m_bLastRowAllowedToChange; // If the last row of the table frame
- // is split across pages, it may not
- // change its size.
+ long m_nLeftMin; // Leftmost border (reference point) for
+ // document coordinates.
+ // All other values are relative to this point!
+ long m_nLeft; // Left border of table.
+ long m_nRight; // Right border of table.
+ long m_nRightMax; // Maximum right border of table.
+
+ bool m_bLastRowAllowedToChange; // If the last row of the table frame
+ // is split across pages, it may not
+ // change its size.
SwTabColsEntries m_aData;