diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-06-29 09:03:14 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-06-29 09:59:11 +0200 |
commit | 225222c8ec171be5ae94968763625a3e0a350b8a (patch) | |
tree | b06c1394108db2b8ba45e67e6456919596451e18 /sw/inc/redline.hxx | |
parent | a8ee7bc96fb90e21ecab46bf1269b9eac6bf8261 (diff) |
sw: prefix members of CompareNodeContent, SwDDEFieldType, ...
... SwDropDownField and SwRangeRedline
See tdf#94879 for motivation.
Change-Id: Ic38825413d5725a143a2a7f81f0d464984e231e6
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/97360
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/inc/redline.hxx')
-rw-r--r-- | sw/inc/redline.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/redline.hxx b/sw/inc/redline.hxx index e00c769fd118..b3193395ebd9 100644 --- a/sw/inc/redline.hxx +++ b/sw/inc/redline.hxx @@ -166,7 +166,7 @@ class SW_DLLPUBLIC SwRangeRedline : public SwPaM void MoveFromSection(size_t nMyPos); public: - static sal_uInt32 m_nLastId; + static sal_uInt32 s_nLastId; SwRangeRedline( RedlineType eType, const SwPaM& rPam ); SwRangeRedline( const SwRedlineData& rData, const SwPaM& rPam ); @@ -175,7 +175,7 @@ public: SwRangeRedline(SwRedlineData* pData, const SwPosition& rPos, bool bDelLP) : SwPaM( rPos ), m_pRedlineData( pData ), m_pContentSect( nullptr ), - m_bDelLastPara( bDelLP ), m_bIsVisible( true ), m_nId( m_nLastId++ ) + m_bDelLastPara( bDelLP ), m_bIsVisible( true ), m_nId( s_nLastId++ ) {} SwRangeRedline( const SwRangeRedline& ); virtual ~SwRangeRedline() override; |