diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-04 09:29:02 +0100 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-01-04 10:09:35 +0000 |
commit | f591a096de3b69ecba16b002fb6ba9ba496ad53a (patch) | |
tree | aae75eed46868f751cd45daab264f589e4f87c6e /sw/inc/hints.hxx | |
parent | 29be1b06b8e63694d1ce60d8b7af3f21791bf697 (diff) |
sw: prefix members of SwAttrSetChg
Change-Id: Ie24194fe04dafbc447cf8a8a015316e9ba6e9ac9
Reviewed-on: https://gerrit.libreoffice.org/21071
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/hints.hxx')
-rw-r--r-- | sw/inc/hints.hxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx index f5da6ee6c5c5..dc8d1799dbc7 100644 --- a/sw/inc/hints.hxx +++ b/sw/inc/hints.hxx @@ -192,27 +192,27 @@ public: */ class SwAttrSetChg: public SwMsgPoolItem { - bool bDelSet; - SwAttrSet* pChgSet; ///< what has changed - const SwAttrSet* pTheChgdSet; ///< is only used to compare + bool m_bDelSet; + SwAttrSet* m_pChgSet; ///< what has changed + const SwAttrSet* m_pTheChgdSet; ///< is only used to compare public: SwAttrSetChg( const SwAttrSet& rTheSet, SwAttrSet& rSet ); SwAttrSetChg( const SwAttrSetChg& ); virtual ~SwAttrSetChg(); /// What has changed - const SwAttrSet* GetChgSet() const { return pChgSet; } - SwAttrSet* GetChgSet() { return pChgSet; } + const SwAttrSet* GetChgSet() const { return m_pChgSet; } + SwAttrSet* GetChgSet() { return m_pChgSet; } /// Where it has changed - const SwAttrSet* GetTheChgdSet() const { return pTheChgdSet; } + const SwAttrSet* GetTheChgdSet() const { return m_pTheChgdSet; } - sal_uInt16 Count() const { return pChgSet->Count(); } + sal_uInt16 Count() const { return m_pChgSet->Count(); } void ClearItem( sal_uInt16 nWhichL = 0 ) #ifdef DBG_UTIL ; #else - { pChgSet->ClearItem( nWhichL ); } + { m_pChgSet->ClearItem( nWhichL ); } #endif }; |