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>
This commit is contained in:
Miklos Vajna
2017-03-27 09:11:05 +02:00
parent d615af618c
commit be94475414
2 changed files with 9 additions and 9 deletions

View File

@@ -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

View File

@@ -193,12 +193,12 @@ void SwTableBoxFormula::Calc( SwTableCalcPara& rCalcPara, double& rValue )
}
SwTableBoxValue::SwTableBoxValue()
: SfxPoolItem( RES_BOXATR_VALUE ), nValue( 0 )
: SfxPoolItem( RES_BOXATR_VALUE ), m_nValue( 0 )
{
}
SwTableBoxValue::SwTableBoxValue( const double nVal )
: SfxPoolItem( RES_BOXATR_VALUE ), nValue( nVal )
: SfxPoolItem( RES_BOXATR_VALUE ), m_nValue( nVal )
{
}
@@ -207,14 +207,14 @@ bool SwTableBoxValue::operator==( const SfxPoolItem& rAttr ) const
assert(SfxPoolItem::operator==(rAttr));
SwTableBoxValue const& rOther( static_cast<SwTableBoxValue const&>(rAttr) );
// items with NaN should be equal to enable pooling
return ::rtl::math::isNan( nValue )
? ::rtl::math::isNan( rOther.nValue )
: ( nValue == rOther.nValue );
return ::rtl::math::isNan( m_nValue )
? ::rtl::math::isNan( rOther.m_nValue )
: ( m_nValue == rOther.m_nValue );
}
SfxPoolItem* SwTableBoxValue::Clone( SfxItemPool* ) const
{
return new SwTableBoxValue( nValue );
return new SwTableBoxValue( m_nValue );
}
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */