summaryrefslogtreecommitdiff
path: root/sw/inc/cellatr.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-03-20 09:10:55 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-03-20 12:06:30 +0000
commita1eb1b6e845a7772d51755ec060300a8b746d9ff (patch)
tree67b82e6d3ec38fe9781281d04ee7bba7ca2d6937 /sw/inc/cellatr.hxx
parent879aa0f71d98969f6bf2e540f1e95c7c9e0e05bf (diff)
sw: prefix members of SwTableBoxNumFormat
Change-Id: Ie5f9740f5022230d85aafb8a2921396d03abe1df Reviewed-on: https://gerrit.libreoffice.org/35453 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/cellatr.hxx')
-rw-r--r--sw/inc/cellatr.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/cellatr.hxx b/sw/inc/cellatr.hxx
index 68b5c18be7cd..36e709af2778 100644
--- a/sw/inc/cellatr.hxx
+++ b/sw/inc/cellatr.hxx
@@ -30,7 +30,7 @@ namespace rtl { class OUString; }
class SW_DLLPUBLIC SwTableBoxNumFormat : public SfxUInt32Item
{
- bool bAuto; ///< automatically given flag
+ bool m_bAuto; ///< automatically given flag
public:
SwTableBoxNumFormat( sal_uInt32 nFormat = css::util::NumberFormat::TEXT,
bool bAuto = false );
@@ -42,7 +42,7 @@ public:
SwTableBoxNumFormat& operator=( const SwTableBoxNumFormat& rAttr )
{
SetValue( rAttr.GetValue() );
- bAuto = rAttr.bAuto;
+ m_bAuto = rAttr.m_bAuto;
return *this;
}
};