From 6250a928d0469eb63c179f56d73cbd24e7f821fe Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 22 Jan 2018 09:04:13 +0100 Subject: sw: prefix members of SwDocInfoField, SwDocStatField and SwDocStatFieldType Change-Id: I8c6e618266f56148df385eb140668730d9b06ed3 Reviewed-on: https://gerrit.libreoffice.org/48293 Tested-by: Jenkins Reviewed-by: Miklos Vajna --- sw/inc/docufld.hxx | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) (limited to 'sw/inc/docufld.hxx') 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; }; -- cgit