summaryrefslogtreecommitdiff
path: root/sw/inc/pvprtdat.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2020-02-17 09:04:41 +0100
committerMiklos Vajna <vmiklos@collabora.com>2020-02-17 09:58:56 +0100
commit502d7cc09b11db236d4d92e8a19385e06942dcce (patch)
tree4c8fdaa0ad2157f7416583450728cc550f0a1be1 /sw/inc/pvprtdat.hxx
parente2f9ebd7d117353b189850999e1ca322f7e88b0b (diff)
sw: prefix members of HeaderCheck, NumberingCheck, SwPagePreviewPrtData ...
... and SwPrintOptions See tdf#94879 for motivation. Change-Id: Ic99281a5a093b707dc271d0710b1bf6e5fc65807 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88845 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/pvprtdat.hxx')
-rw-r--r--sw/inc/pvprtdat.hxx50
1 files changed, 25 insertions, 25 deletions
diff --git a/sw/inc/pvprtdat.hxx b/sw/inc/pvprtdat.hxx
index a45aa5431d27..2a8d5fb0c108 100644
--- a/sw/inc/pvprtdat.hxx
+++ b/sw/inc/pvprtdat.hxx
@@ -25,43 +25,43 @@
class SwPagePreviewPrtData
{
- sal_Int32 nLeftSpace, nRightSpace, nTopSpace, nBottomSpace,
- nHorzSpace, nVertSpace;
- sal_uInt8 nRow, nCol;
- bool bLandscape : 1;
+ sal_Int32 m_nLeftSpace, m_nRightSpace, m_nTopSpace, m_nBottomSpace,
+ m_nHorzSpace, m_nVertSpace;
+ sal_uInt8 m_nRow, m_nCol;
+ bool m_bLandscape : 1;
public:
SwPagePreviewPrtData()
- : nLeftSpace(0), nRightSpace(0), nTopSpace(0), nBottomSpace(0),
- nHorzSpace(0), nVertSpace(0), nRow(1), nCol(1),
- bLandscape(false)
+ : m_nLeftSpace(0), m_nRightSpace(0), m_nTopSpace(0), m_nBottomSpace(0),
+ m_nHorzSpace(0), m_nVertSpace(0), m_nRow(1), m_nCol(1),
+ m_bLandscape(false)
{}
- sal_Int32 GetLeftSpace() const { return nLeftSpace; }
- void SetLeftSpace( sal_Int32 n ) { nLeftSpace = n; }
+ sal_Int32 GetLeftSpace() const { return m_nLeftSpace; }
+ void SetLeftSpace( sal_Int32 n ) { m_nLeftSpace = n; }
- sal_Int32 GetRightSpace() const { return nRightSpace; }
- void SetRightSpace( sal_Int32 n ) { nRightSpace = n; }
+ sal_Int32 GetRightSpace() const { return m_nRightSpace; }
+ void SetRightSpace( sal_Int32 n ) { m_nRightSpace = n; }
- sal_Int32 GetTopSpace() const { return nTopSpace; }
- void SetTopSpace( sal_Int32 n ) { nTopSpace = n; }
+ sal_Int32 GetTopSpace() const { return m_nTopSpace; }
+ void SetTopSpace( sal_Int32 n ) { m_nTopSpace = n; }
- sal_Int32 GetBottomSpace() const { return nBottomSpace; }
- void SetBottomSpace(sal_Int32 n ) { nBottomSpace = n; }
+ sal_Int32 GetBottomSpace() const { return m_nBottomSpace; }
+ void SetBottomSpace(sal_Int32 n ) { m_nBottomSpace = n; }
- sal_Int32 GetHorzSpace() const { return nHorzSpace; }
- void SetHorzSpace( sal_Int32 n ) { nHorzSpace = n; }
+ sal_Int32 GetHorzSpace() const { return m_nHorzSpace; }
+ void SetHorzSpace( sal_Int32 n ) { m_nHorzSpace = n; }
- sal_Int32 GetVertSpace() const { return nVertSpace; }
- void SetVertSpace( sal_Int32 n ) { nVertSpace = n; }
+ sal_Int32 GetVertSpace() const { return m_nVertSpace; }
+ void SetVertSpace( sal_Int32 n ) { m_nVertSpace = n; }
- sal_uInt8 GetRow() const { return nRow; }
- void SetRow(sal_uInt8 n ) { nRow = n; }
+ sal_uInt8 GetRow() const { return m_nRow; }
+ void SetRow(sal_uInt8 n ) { m_nRow = n; }
- sal_uInt8 GetCol() const { return nCol; }
- void SetCol( sal_uInt8 n ) { nCol = n; }
+ sal_uInt8 GetCol() const { return m_nCol; }
+ void SetCol( sal_uInt8 n ) { m_nCol = n; }
- bool GetLandscape() const { return bLandscape; }
- void SetLandscape( bool b ) { bLandscape = b; }
+ bool GetLandscape() const { return m_bLandscape; }
+ void SetLandscape( bool b ) { m_bLandscape = b; }
};
#endif