summaryrefslogtreecommitdiff
path: root/sw/source/core/text/porfly.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/core/text/porfly.hxx')
-rw-r--r--sw/source/core/text/porfly.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/text/porfly.hxx b/sw/source/core/text/porfly.hxx
index 7227c76b95da..480492f7a829 100644
--- a/sw/source/core/text/porfly.hxx
+++ b/sw/source/core/text/porfly.hxx
@@ -30,12 +30,12 @@ struct SwCursorMoveState;
class SwFlyPortion : public SwFixPortion
{
- sal_uInt16 nBlankWidth;
+ sal_uInt16 m_nBlankWidth;
public:
explicit SwFlyPortion( const SwRect &rFlyRect )
- : SwFixPortion(rFlyRect), nBlankWidth( 0 ) { SetWhichPor( PortionType::Fly ); }
- sal_uInt16 GetBlankWidth( ) const { return nBlankWidth; }
- void SetBlankWidth( const sal_uInt16 nNew ) { nBlankWidth = nNew; }
+ : SwFixPortion(rFlyRect), m_nBlankWidth( 0 ) { SetWhichPor( PortionType::Fly ); }
+ sal_uInt16 GetBlankWidth( ) const { return m_nBlankWidth; }
+ void SetBlankWidth( const sal_uInt16 nNew ) { m_nBlankWidth = nNew; }
virtual void Paint( const SwTextPaintInfo &rInf ) const override;
virtual bool Format( SwTextFormatInfo &rInf ) override;
};