diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-22 09:06:01 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-10-22 09:10:48 +0200 |
commit | 52de28c83d4b466e6da41a4d7cc23f5266211c5e (patch) | |
tree | 2f9d23fffff1baa48a7401a1d4bf69d364fab183 /sw | |
parent | c7a73904059cbd37f26aecf4c55af35935a023e6 (diff) |
sw: prefix members of SwVirtPageNumInfo
Change-Id: Iac98463066f4a21d70e82dfc5c85f061d5ae6603
Diffstat (limited to 'sw')
-rw-r--r-- | sw/inc/hints.hxx | 14 | ||||
-rw-r--r-- | sw/source/core/attr/hints.cxx | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/sw/inc/hints.hxx b/sw/inc/hints.hxx index 30b2bc0e5af1..47808f86976d 100644 --- a/sw/inc/hints.hxx +++ b/sw/inc/hints.hxx @@ -225,19 +225,19 @@ public: class SwVirtPageNumInfo: public SwMsgPoolItem { - const SwPageFrm *pPage; - const SwPageFrm *pOrigPage; - const SwFrm *pFrm; + const SwPageFrm *m_pPage; + const SwPageFrm *m_pOrigPage; + const SwFrm *m_pFrm; /** Multiple attributes can be attached to a single paragraph / table The frame, in the end, has to decide which attribute takes effect and which physical page it involves */ public: SwVirtPageNumInfo( const SwPageFrm *pPg ); - const SwPageFrm *GetPage() { return pPage; } - const SwPageFrm *GetOrigPage() { return pOrigPage;} - const SwFrm *GetFrm() { return pFrm; } + const SwPageFrm *GetPage() { return m_pPage; } + const SwPageFrm *GetOrigPage() { return m_pOrigPage;} + const SwFrm *GetFrm() { return m_pFrm; } void SetInfo( const SwPageFrm *pPg, - const SwFrm *pF ) { pFrm = pF, pPage = pPg; } + const SwFrm *pF ) { m_pFrm = pF, m_pPage = pPg; } }; class SwFindNearestNode : public SwMsgPoolItem diff --git a/sw/source/core/attr/hints.cxx b/sw/source/core/attr/hints.cxx index 5e0eba393c93..8bd3359b24ea 100644 --- a/sw/source/core/attr/hints.cxx +++ b/sw/source/core/attr/hints.cxx @@ -145,7 +145,7 @@ SwCondCollCondChg::SwCondCollCondChg( SwFormat *pFormat ) } SwVirtPageNumInfo::SwVirtPageNumInfo( const SwPageFrm *pPg ) : - SwMsgPoolItem( RES_VIRTPAGENUM_INFO ), pPage( 0 ), pOrigPage( pPg ), pFrm( 0 ) + SwMsgPoolItem( RES_VIRTPAGENUM_INFO ), m_pPage( 0 ), m_pOrigPage( pPg ), m_pFrm( 0 ) { } |