Kaydet (Commit) 217c09ad authored tarafından Michael Stahl's avatar Michael Stahl

sw: prefix SwCellFrm members

Change-Id: Ia38bdf402595dc0b7e6dabd80a4e93e53142b719
üst ef342691
......@@ -30,7 +30,7 @@ class SwBorderAttrs;
/// SwCellFrm is one table cell in the document layout.
class SwCellFrm: public SwLayoutFrm
{
const SwTableBox* pTabBox;
const SwTableBox* m_pTabBox;
protected:
virtual void Format( const SwBorderAttrs *pAttrs = 0 ) SAL_OVERRIDE;
......@@ -48,7 +48,7 @@ public:
// #i103961#
virtual void Cut() SAL_OVERRIDE;
const SwTableBox *GetTabBox() const { return pTabBox; }
const SwTableBox *GetTabBox() const { return m_pTabBox; }
// used for breaking table rows:
SwCellFrm* GetFollowCell() const;
......
......@@ -4368,9 +4368,9 @@ bool SwRowFrm::ShouldRowKeepWithNext() const
return bRet;
}
SwCellFrm::SwCellFrm( const SwTableBox &rBox, SwFrm* pSib, bool bInsertContent ) :
SwLayoutFrm( rBox.GetFrmFmt(), pSib ),
pTabBox( &rBox )
SwCellFrm::SwCellFrm(const SwTableBox &rBox, SwFrm* pSib, bool bInsertContent)
: SwLayoutFrm( rBox.GetFrmFmt(), pSib )
, m_pTabBox( &rBox )
{
mnType = FRMC_CELL;
......
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