summaryrefslogtreecommitdiff
path: root/sw/inc/authratr.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2017-12-04 09:43:56 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2017-12-04 14:58:53 +0100
commita36cab2b689b26bbf5374b4974e85c9f250b89e9 (patch)
tree1f7d8a4aad9a2b29722410757e075163e41b28fb /sw/inc/authratr.hxx
parent12ba14c6bee1c773e4500f79a90a07f871cf3feb (diff)
sw: prefix members of AuthorCharAttr
Change-Id: I9439c900ef2ec567cde105a3e7b8fe222ac1ccb6 Reviewed-on: https://gerrit.libreoffice.org/45780 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/authratr.hxx')
-rw-r--r--sw/inc/authratr.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/authratr.hxx b/sw/inc/authratr.hxx
index 814e914f3f9d..1507e088addf 100644
--- a/sw/inc/authratr.hxx
+++ b/sw/inc/authratr.hxx
@@ -27,16 +27,16 @@
class SW_DLLPUBLIC AuthorCharAttr
{
public:
- sal_uInt16 nItemId;
- sal_uInt16 nAttr;
- ColorData nColor;
+ sal_uInt16 m_nItemId;
+ sal_uInt16 m_nAttr;
+ ColorData m_nColor;
AuthorCharAttr();
bool operator == ( const AuthorCharAttr& rAttr ) const
{
- return nItemId == rAttr.nItemId && nAttr == rAttr.nAttr &&
- nColor == rAttr.nColor;
+ return m_nItemId == rAttr.m_nItemId && m_nAttr == rAttr.m_nAttr &&
+ m_nColor == rAttr.m_nColor;
}
};