diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-09-18 09:58:03 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-09-18 10:59:19 +0200 |
commit | a577f6fb33eb83f44370cf648b799ef808e97247 (patch) | |
tree | 2a592d42378e3233a00031a079783ceed72430d9 /sw/inc | |
parent | 74cd94a17b3922bdcd44ab6460232297fbf665d0 (diff) |
sw: prefix members of SwFormatFlyCnt
Change-Id: I41c611d4babe227ce298ed8d6ba3d9e05da5a82b
Reviewed-on: https://gerrit.libreoffice.org/42404
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/fmtflcnt.hxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sw/inc/fmtflcnt.hxx b/sw/inc/fmtflcnt.hxx index 57873510d8b0..18ba66c2fb48 100644 --- a/sw/inc/fmtflcnt.hxx +++ b/sw/inc/fmtflcnt.hxx @@ -32,8 +32,8 @@ class SwTextFlyCnt; class SwFormatFlyCnt : public SfxPoolItem { friend class SwTextFlyCnt; - SwTextFlyCnt* pTextAttr; - SwFrameFormat* pFormat; ///< My Fly/DrawFrame-format. + SwTextFlyCnt* m_pTextAttr; + SwFrameFormat* m_pFormat; ///< My Fly/DrawFrame-format. SwFormatFlyCnt& operator=(const SwFormatFlyCnt& rFlyCnt) = delete; public: @@ -42,11 +42,11 @@ public: virtual bool operator==( const SfxPoolItem& ) const override; virtual SfxPoolItem* Clone( SfxItemPool* pPool = nullptr ) const override; - SwFrameFormat *GetFrameFormat() const { return pFormat; } + SwFrameFormat *GetFrameFormat() const { return m_pFormat; } /// For Undo: delete the FlyFrameFormat "logically"; it is kept in Undo-object. - void SetFlyFormat( SwFrameFormat* pNew = nullptr ) { pFormat = pNew; } + void SetFlyFormat( SwFrameFormat* pNew = nullptr ) { m_pFormat = pNew; } - const SwTextFlyCnt *GetTextFlyCnt() const { return pTextAttr; } + const SwTextFlyCnt *GetTextFlyCnt() const { return m_pTextAttr; } }; #endif |