diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-01-20 09:08:33 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-01-20 09:57:23 +0100 |
commit | 71088fb7c7b8e0af37919fc53223203d8a560842 (patch) | |
tree | 1b9d90c4ab2b3fc0e7972cd215c8d701fd3d00f0 /sw/inc | |
parent | a0464b6321c5824a9f76c7c8689bbedc846ef032 (diff) |
sw: prefix members of SwEndNoteInfo and SwFootnoteInfo
Change-Id: Ie952701e6cb65cb0d5789b4f98005872286a41ae
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87052
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/ftninfo.hxx | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/sw/inc/ftninfo.hxx b/sw/inc/ftninfo.hxx index b40c8d441bb8..c9084aef3288 100644 --- a/sw/inc/ftninfo.hxx +++ b/sw/inc/ftninfo.hxx @@ -31,20 +31,20 @@ class SwDoc; class SW_DLLPUBLIC SwEndNoteInfo : public SwClient { - mutable sw::WriterMultiListener aDepends; - mutable SwTextFormatColl* pTextFormatColl; - mutable SwPageDesc* pPageDesc; - mutable SwCharFormat* pCharFormat; - mutable SwCharFormat* pAnchorFormat; - OUString sPrefix; - OUString sSuffix; + mutable sw::WriterMultiListener m_aDepends; + mutable SwTextFormatColl* m_pTextFormatColl; + mutable SwPageDesc* m_pPageDesc; + mutable SwCharFormat* m_pCharFormat; + mutable SwCharFormat* m_pAnchorFormat; + OUString m_sPrefix; + OUString m_sSuffix; protected: bool m_bEndNote; virtual void SwClientNotify( const SwModify&, const SfxHint&) override; public: - SvxNumberType aFormat; - sal_uInt16 nFootnoteOffset; + SvxNumberType m_aFormat; + sal_uInt16 m_nFootnoteOffset; void ChgPageDesc(SwPageDesc* pDesc); SwPageDesc* GetPageDesc(SwDoc& rDoc) const; @@ -52,7 +52,7 @@ public: bool DependsOn(const SwPageDesc*) const; void SetFootnoteTextColl(SwTextFormatColl& rColl); - SwTextFormatColl* GetFootnoteTextColl() const { return pTextFormatColl; } // can be 0. + SwTextFormatColl* GetFootnoteTextColl() const { return m_pTextFormatColl; } // can be 0. SwCharFormat* GetCharFormat(SwDoc &rDoc) const; void SetCharFormat( SwCharFormat* ); @@ -67,11 +67,11 @@ public: SwEndNoteInfo(); SwEndNoteInfo(const SwEndNoteInfo&); - const OUString& GetPrefix() const { return sPrefix; } - const OUString& GetSuffix() const { return sSuffix; } + const OUString& GetPrefix() const { return m_sPrefix; } + const OUString& GetSuffix() const { return m_sSuffix; } - void SetPrefix(const OUString& rSet) { sPrefix = rSet; } - void SetSuffix(const OUString& rSet) { sSuffix = rSet; } + void SetPrefix(const OUString& rSet) { m_sPrefix = rSet; } + void SetSuffix(const OUString& rSet) { m_sSuffix = rSet; } }; enum SwFootnotePos @@ -91,10 +91,10 @@ class SW_DLLPUBLIC SwFootnoteInfo final : public SwEndNoteInfo using SwEndNoteInfo::operator ==; public: - OUString aQuoVadis; - OUString aErgoSum; - SwFootnotePos ePos; - SwFootnoteNum eNum; + OUString m_aQuoVadis; + OUString m_aErgoSum; + SwFootnotePos m_ePos; + SwFootnoteNum m_eNum; SwFootnoteInfo& operator=(const SwFootnoteInfo&); |