summaryrefslogtreecommitdiff
path: root/sw/inc/docufld.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-01-22 09:04:13 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-01-22 19:19:58 +0100
commit6250a928d0469eb63c179f56d73cbd24e7f821fe (patch)
tree756e7de180e450c2d839ab2d33dc75f5ae8e4f21 /sw/inc/docufld.hxx
parent54cc0edd576968e6bc67dfd3831c63876db7fe58 (diff)
sw: prefix members of SwDocInfoField, SwDocStatField and SwDocStatFieldType
Change-Id: I8c6e618266f56148df385eb140668730d9b06ed3 Reviewed-on: https://gerrit.libreoffice.org/48293 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'sw/inc/docufld.hxx')
-rw-r--r--sw/inc/docufld.hxx20
1 files changed, 10 insertions, 10 deletions
diff --git a/sw/inc/docufld.hxx b/sw/inc/docufld.hxx
index 2295ce77fc2a..c89a418f66a2 100644
--- a/sw/inc/docufld.hxx
+++ b/sw/inc/docufld.hxx
@@ -245,20 +245,20 @@ public:
// Document statistics
class SwDocStatFieldType : public SwFieldType
{
- SwDoc* pDoc;
- SvxNumType nNumberingType;
+ SwDoc* m_pDoc;
+ SvxNumType m_nNumberingType;
public:
SwDocStatFieldType(SwDoc*);
OUString Expand(sal_uInt16 nSubType, SvxNumType nFormat) const;
virtual SwFieldType* Copy() const override;
- void SetNumFormat( SvxNumType eFormat ) { nNumberingType = eFormat; }
+ void SetNumFormat( SvxNumType eFormat ) { m_nNumberingType = eFormat; }
};
class SW_DLLPUBLIC SwDocStatField : public SwField
{
- sal_uInt16 nSubType;
+ sal_uInt16 m_nSubType;
public:
SwDocStatField( SwDocStatFieldType*,
@@ -506,9 +506,9 @@ public:
class SW_DLLPUBLIC SwDocInfoField : public SwValueField
{
- sal_uInt16 nSubType;
- OUString aContent;
- OUString aName;
+ sal_uInt16 m_nSubType;
+ OUString m_aContent;
+ OUString m_aName;
virtual OUString Expand() const override;
virtual SwField* Copy() const override;
@@ -521,9 +521,9 @@ public:
virtual sal_uInt16 GetSubType() const override;
virtual void SetLanguage(LanguageType nLng) override;
virtual OUString GetFieldName() const override;
- const OUString& GetName() const { return aName; }
- void SetName( const OUString& rName ) { aName = rName; }
- void SetExpansion(const OUString& rStr) { aContent = rStr; }
+ const OUString& GetName() const { return m_aName; }
+ void SetName( const OUString& rName ) { m_aName = rName; }
+ void SetExpansion(const OUString& rStr) { m_aContent = rStr; }
virtual bool QueryValue( css::uno::Any& rVal, sal_uInt16 nWhich ) const override;
virtual bool PutValue( const css::uno::Any& rVal, sal_uInt16 nWhich ) override;
};