summaryrefslogtreecommitdiff
path: root/sw/inc/fldbas.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-04-21 17:32:10 +0200
committerMichael Stahl <mstahl@redhat.com>2015-04-21 20:36:27 +0200
commit824229a55e5f5bf0e7bd8e2917635175c9c82dc4 (patch)
tree102807bb400d16e877beb9a630ec29ad326f0e3a /sw/inc/fldbas.hxx
parent84a6758609fc9472c7cb5a2e449860bcc554ed58 (diff)
sw: prefix members of SwField
Change-Id: If81d5a2ab499837f9e4a38665b0daf2a6bba1269
Diffstat (limited to 'sw/inc/fldbas.hxx')
-rw-r--r--sw/inc/fldbas.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/sw/inc/fldbas.hxx b/sw/inc/fldbas.hxx
index 61cf2b54b20b..8cc63afbf575 100644
--- a/sw/inc/fldbas.hxx
+++ b/sw/inc/fldbas.hxx
@@ -284,17 +284,17 @@ private:
mutable OUString m_Cache; ///< Cached expansion (for clipboard).
bool m_bUseFieldValueCache; /// control the usage of the cached field value
- sal_uInt16 nLang; ///< Always change via SetLanguage!
- bool bIsAutomaticLanguage;
- sal_uInt32 nFormat;
+ sal_uInt16 m_nLang; ///< Always change via SetLanguage!
+ bool m_bIsAutomaticLanguage;
+ sal_uInt32 m_nFormat;
- SwFieldType* pType;
+ SwFieldType* m_pType;
virtual OUString Expand() const = 0;
virtual SwField* Copy() const = 0;
protected:
- void SetFormat(sal_uInt32 nSet) {nFormat = nSet;}
+ void SetFormat(sal_uInt32 const nSet) { m_nFormat = nSet; }
SwField( SwFieldType* pTyp,
sal_uInt32 nFmt = 0,
@@ -331,7 +331,7 @@ public:
#ifdef DBG_UTIL
; // implemented in fldbas.cxx
#else
- { return pType->Which(); }
+ { return m_pType->Which(); }
#endif
// TYP_ID
@@ -361,8 +361,8 @@ public:
bool HasClickHdl() const;
bool IsFixed() const;
- bool IsAutomaticLanguage() const { return bIsAutomaticLanguage;}
- void SetAutomaticLanguage(bool bSet){bIsAutomaticLanguage = bSet;}
+ bool IsAutomaticLanguage() const { return m_bIsAutomaticLanguage;}
+ void SetAutomaticLanguage(bool const bSet) {m_bIsAutomaticLanguage = bSet;}
virtual OUString GetDescription() const;
/// Is this field clickable?
@@ -370,13 +370,13 @@ public:
};
inline SwFieldType* SwField::GetTyp() const
- { return pType; }
+ { return m_pType; }
inline sal_uInt32 SwField::GetFormat() const
- { return nFormat; }
+ { return m_nFormat; }
inline sal_uInt16 SwField::GetLanguage() const
- { return nLang; }
+ { return m_nLang; }
/// Fields containing values that have to be formatted via number formatter.
class SwValueFieldType : public SwFieldType