summaryrefslogtreecommitdiff
path: root/sw/inc/fmtline.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-09-23 09:05:13 +0200
committerMiklos Vajna <vmiklos@collabora.com>2019-09-23 10:58:41 +0200
commite1b51d4588b4b39592bb94dd5bb90de5e04d061e (patch)
tree33990d21814cbc3a92fc7e84b3030cb07b8cd092 /sw/inc/fmtline.hxx
parent42af04bf2493508b481b3d6a32c71bd03fa7191b (diff)
sw: prefix members of SwFormatLineNumber and SwFormatSurround
See tdf#94879 for motivation. Change-Id: I95e4f867411d5513db0e1b64a37abbba9ef9c2b3 Reviewed-on: https://gerrit.libreoffice.org/79374 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/fmtline.hxx')
-rw-r--r--sw/inc/fmtline.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/inc/fmtline.hxx b/sw/inc/fmtline.hxx
index 7c5e393e4794..c0589d53ffed 100644
--- a/sw/inc/fmtline.hxx
+++ b/sw/inc/fmtline.hxx
@@ -29,8 +29,8 @@ class IntlWrapper;
class SW_DLLPUBLIC SwFormatLineNumber: public SfxPoolItem
{
- sal_uLong nStartValue :24; ///< Starting value for the paragraph. 0 == no starting value.
- bool bCountLines :1; ///< Also count lines of paragraph.
+ sal_uLong m_nStartValue :24; ///< Starting value for the paragraph. 0 == no starting value.
+ bool m_bCountLines :1; ///< Also count lines of paragraph.
public:
SwFormatLineNumber();
@@ -54,11 +54,11 @@ public:
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt8 nMemberId = 0 ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt8 nMemberId ) override;
- sal_uLong GetStartValue() const { return nStartValue; }
- bool IsCount() const { return bCountLines; }
+ sal_uLong GetStartValue() const { return m_nStartValue; }
+ bool IsCount() const { return m_bCountLines; }
- void SetStartValue( sal_uLong nNew ) { nStartValue = nNew; }
- void SetCountLines( bool b ) { bCountLines = b; }
+ void SetStartValue( sal_uLong nNew ) { m_nStartValue = nNew; }
+ void SetCountLines( bool b ) { m_bCountLines = b; }
};
inline const SwFormatLineNumber &SwAttrSet::GetLineNumber(bool bInP) const