diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-03-27 09:11:05 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-03-27 09:47:55 +0000 |
commit | be94475414c878d1e3228da577b496985a4a6a8c (patch) | |
tree | b28136fee382ad3ef506d59a7157c38a8e851486 /sw/inc | |
parent | d615af618cc6a7152c76a49b3cd09db38eaa9e07 (diff) |
sw: prefix members of SwTableBoxValue
Change-Id: Id28b9d552083212f730d03725646c5b511462a26
Reviewed-on: https://gerrit.libreoffice.org/35743
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/cellatr.hxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/cellatr.hxx b/sw/inc/cellatr.hxx index 36e709af2778..2dfb8c193b87 100644 --- a/sw/inc/cellatr.hxx +++ b/sw/inc/cellatr.hxx @@ -75,7 +75,7 @@ public: class SW_DLLPUBLIC SwTableBoxValue : public SfxPoolItem { - double nValue; + double m_nValue; public: SwTableBoxValue(); SwTableBoxValue( const double aVal ); @@ -86,11 +86,11 @@ public: SwTableBoxValue& operator=( const SwTableBoxValue& rCmp ) { - nValue = rCmp.nValue; + m_nValue = rCmp.m_nValue; return *this; } - double GetValue() const { return nValue; } + double GetValue() const { return m_nValue; } }; inline const SwTableBoxNumFormat &SwAttrSet::GetTableBoxNumFormat(bool bInP) const |