Kaydet (Commit) 6329a303 authored tarafından Jan Holesovsky's avatar Jan Holesovsky

sw: prefix members of SwTextFrmBreak.

Change-Id: Id1d6166ee8c1c3558746da1d7bb5ad2163a87845
üst edf26ccc
This diff is collapsed.
......@@ -26,18 +26,18 @@ class SwTextFrm;
class SwTextFrmBreak
{
private:
SwTwips nRstHeight;
SwTwips nOrigin;
SwTwips m_nRstHeight;
SwTwips m_nOrigin;
protected:
SwTextFrm *pFrm;
bool bBreak;
bool bKeep;
SwTextFrm *m_pFrm;
bool m_bBreak;
bool m_bKeep;
public:
SwTextFrmBreak( SwTextFrm *pFrm, const SwTwips nRst = 0 );
bool IsBreakNow( SwTextMargin &rLine );
bool IsKeepAlways() const { return bKeep; }
bool IsKeepAlways() const { return m_bKeep; }
inline void SetKeep( const bool bNew ) { bKeep = bNew; }
inline void SetKeep( const bool bNew ) { m_bKeep = bNew; }
bool IsInside( SwTextMargin &rLine ) const;
......
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