summaryrefslogtreecommitdiff
path: root/sw/inc/expfld.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-07-25 09:07:32 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-07-25 10:06:18 +0200
commit921f285c7ff713ad219d3e3385d7e7d12d33581e (patch)
treebb462c228e1eee2c2eeef820f632cc47a3ceb2de /sw/inc/expfld.hxx
parentfbd79e4b2dfdcad415c9de589dd3e509d1fc0f56 (diff)
sw: prefix members of SwGetExpField and SwGetRefField
Change-Id: I703357694eb2f880fa9cc5240fcc5610bd34e924 Reviewed-on: https://gerrit.libreoffice.org/57950 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/expfld.hxx')
-rw-r--r--sw/inc/expfld.hxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx
index 952e7fcc5402..ecdba62d7c9c 100644
--- a/sw/inc/expfld.hxx
+++ b/sw/inc/expfld.hxx
@@ -85,11 +85,11 @@ protected:
class SW_DLLPUBLIC SwGetExpField : public SwFormulaField
{
- OUString sExpand;
- bool bIsInBodyText;
- sal_uInt16 nSubType;
+ OUString m_sExpand;
+ bool m_bIsInBodyText;
+ sal_uInt16 m_nSubType;
- bool bLateInitialization; // #i82544#
+ bool m_bLateInitialization; // #i82544#
virtual OUString Expand() const override;
virtual std::unique_ptr<SwField> Copy() const override;
@@ -126,19 +126,19 @@ public:
static sal_Int32 GetReferenceTextPos( const SwFormatField& rFormat, SwDoc& rDoc, sal_Int32 nHint = 0);
// #i82544#
- void SetLateInitialization() { bLateInitialization = true;}
+ void SetLateInitialization() { m_bLateInitialization = true;}
};
inline void SwGetExpField::ChgExpStr(const OUString& rExpand)
- { sExpand = rExpand;}
+ { m_sExpand = rExpand;}
/// Called by formatting.
inline bool SwGetExpField::IsInBodyText() const
- { return bIsInBodyText; }
+ { return m_bIsInBodyText; }
/// Set by UpdateExpFields where node position is known.
inline void SwGetExpField::ChgBodyTextFlag( bool bIsInBody )
- { bIsInBodyText = bIsInBody; }
+ { m_bIsInBodyText = bIsInBody; }
class SwSetExpField;