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; ...@@ -26,18 +26,18 @@ class SwTextFrm;
class SwTextFrmBreak class SwTextFrmBreak
{ {
private: private:
SwTwips nRstHeight; SwTwips m_nRstHeight;
SwTwips nOrigin; SwTwips m_nOrigin;
protected: protected:
SwTextFrm *pFrm; SwTextFrm *m_pFrm;
bool bBreak; bool m_bBreak;
bool bKeep; bool m_bKeep;
public: public:
SwTextFrmBreak( SwTextFrm *pFrm, const SwTwips nRst = 0 ); SwTextFrmBreak( SwTextFrm *pFrm, const SwTwips nRst = 0 );
bool IsBreakNow( SwTextMargin &rLine ); 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; 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