summaryrefslogtreecommitdiff
path: root/sw/source/core/text/porexp.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2019-07-01 09:01:01 +0200
committerMiklos Vajna <vmiklos@collabora.com>2019-07-01 09:42:44 +0200
commit40cb97b077af86b98da7ddd499a84748f53740f6 (patch)
tree75e01e44d21f239ff406e1c460e7aa4cb77e0cac /sw/source/core/text/porexp.hxx
parent1781ff1148cad6f0b9bd59678c2d450255119a1e (diff)
sw: prefix members of SwBlankPortion
See tdf#94879 for motivation. Change-Id: I4e137e71b32a1fa5fa0f20473142e7d72a891f4e Reviewed-on: https://gerrit.libreoffice.org/74945 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/core/text/porexp.hxx')
-rw-r--r--sw/source/core/text/porexp.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/source/core/text/porexp.hxx b/sw/source/core/text/porexp.hxx
index e787ae400e4b..979516ffdafe 100644
--- a/sw/source/core/text/porexp.hxx
+++ b/sw/source/core/text/porexp.hxx
@@ -38,12 +38,12 @@ public:
class SwBlankPortion : public SwExpandPortion
{
- sal_Unicode cChar;
- bool const bMulti; // For multiportion brackets
+ sal_Unicode m_cChar;
+ bool const m_bMulti; // For multiportion brackets
public:
SwBlankPortion( sal_Unicode cCh, bool bMult = false )
- : cChar( cCh ), bMulti( bMult )
- { cChar = cCh; SetLen(TextFrameIndex(1)); SetWhichPor( PortionType::Blank ); }
+ : m_cChar( cCh ), m_bMulti( bMult )
+ { m_cChar = cCh; SetLen(TextFrameIndex(1)); SetWhichPor( PortionType::Blank ); }
virtual SwLinePortion *Compress() override;
virtual bool GetExpText( const SwTextSizeInfo &rInf, OUString &rText ) const override;