summaryrefslogtreecommitdiff
path: root/sw/inc/hints.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-10-22 09:06:01 +0200
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-10-22 09:10:48 +0200
commit52de28c83d4b466e6da41a4d7cc23f5266211c5e (patch)
tree2f9d23fffff1baa48a7401a1d4bf69d364fab183 /sw/inc/hints.hxx
parentc7a73904059cbd37f26aecf4c55af35935a023e6 (diff)
sw: prefix members of SwVirtPageNumInfo
Change-Id: Iac98463066f4a21d70e82dfc5c85f061d5ae6603
Diffstat (limited to 'sw/inc/hints.hxx')
-rw-r--r--sw/inc/hints.hxx14
1 files changed, 7 insertions, 7 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