summaryrefslogtreecommitdiff
path: root/sw/inc/expfld.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2018-12-03 09:09:12 +0100
committerMiklos Vajna <vmiklos@collabora.com>2018-12-03 10:03:54 +0100
commit097da565e03c8bf1fc016d5a797f4e606716a7a3 (patch)
tree1b4d394ecece3a1f189dc258544a37a9daa29da0 /sw/inc/expfld.hxx
parentf3a19b124754d5506d047dabd5750b9e650bbb0a (diff)
sw: prefix members of SwTableField
Change-Id: I02dd9227ee43967d8cf49d99791bada5d1231566 Reviewed-on: https://gerrit.libreoffice.org/64440 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc/expfld.hxx')
-rw-r--r--sw/inc/expfld.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/expfld.hxx b/sw/inc/expfld.hxx
index 936a765393fa..1f1c53c72d94 100644
--- a/sw/inc/expfld.hxx
+++ b/sw/inc/expfld.hxx
@@ -373,8 +373,8 @@ public:
class SwTableField : public SwValueField, public SwTableFormula
{
- OUString sExpand;
- sal_uInt16 nSubType;
+ OUString m_sExpand;
+ sal_uInt16 m_nSubType;
virtual OUString ExpandImpl(SwRootFrame const* pLayout) const override;
virtual std::unique_ptr<SwField> Copy() const override;
@@ -392,7 +392,7 @@ public:
virtual sal_uInt16 GetSubType() const override;
virtual void SetSubType(sal_uInt16 nType) override;
- void ChgExpStr(const OUString& rStr) { sExpand = rStr; }
+ void ChgExpStr(const OUString& rStr) { m_sExpand = rStr; }
void CalcField( SwTableCalcPara& rCalcPara );