Kaydet (Commit) 52de28c8 authored tarafından Miklos Vajna's avatar Miklos Vajna

sw: prefix members of SwVirtPageNumInfo

Change-Id: Iac98463066f4a21d70e82dfc5c85f061d5ae6603
üst c7a73904
......@@ -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
......
......@@ -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 )
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment