summaryrefslogtreecommitdiff
path: root/sw/source/core/attr/cellatr.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/attr/cellatr.cxx')
-rw-r--r--sw/source/core/attr/cellatr.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/attr/cellatr.cxx b/sw/source/core/attr/cellatr.cxx
index e471bd7a9686..6817eea0c6c1 100644
--- a/sw/source/core/attr/cellatr.cxx
+++ b/sw/source/core/attr/cellatr.cxx
@@ -32,7 +32,7 @@
#include <swtable.hxx>
SwTableBoxNumFormat::SwTableBoxNumFormat( sal_uInt32 nFormat, bool bFlag )
- : SfxUInt32Item( RES_BOXATR_FORMAT, nFormat ), bAuto( bFlag )
+ : SfxUInt32Item( RES_BOXATR_FORMAT, nFormat ), m_bAuto( bFlag )
{
}
@@ -40,12 +40,12 @@ bool SwTableBoxNumFormat::operator==( const SfxPoolItem& rAttr ) const
{
assert(SfxPoolItem::operator==(rAttr));
return GetValue() == static_cast<const SwTableBoxNumFormat&>(rAttr).GetValue() &&
- bAuto == static_cast<const SwTableBoxNumFormat&>(rAttr).bAuto;
+ m_bAuto == static_cast<const SwTableBoxNumFormat&>(rAttr).m_bAuto;
}
SfxPoolItem* SwTableBoxNumFormat::Clone( SfxItemPool* ) const
{
- return new SwTableBoxNumFormat( GetValue(), bAuto );
+ return new SwTableBoxNumFormat( GetValue(), m_bAuto );
}
SwTableBoxFormula::SwTableBoxFormula( const OUString& rFormula )