[Libreoffice-commits] core.git: sw/inc
Tomaž Vajngerl (via logerrit)
logerrit at kemper.freedesktop.org
Mon Aug 12 22:24:51 UTC 2019
sw/inc/tabcol.hxx | 34 +++++++++++++++++-----------------
1 file changed, 17 insertions(+), 17 deletions(-)
New commits:
commit 442431b1ef78431df33b6b6e308a689adc998f74
Author: Tomaž Vajngerl <tomaz.vajngerl at collabora.co.uk>
AuthorDate: Sat Aug 10 17:17:57 2019 +0900
Commit: Tomaž Vajngerl <quikee at gmail.com>
CommitDate: Tue Aug 13 00:23:46 2019 +0200
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 at gmail.com>
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;
More information about the Libreoffice-commits
mailing list