diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2019-08-21 09:05:41 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2019-08-21 10:05:09 +0200 |
commit | d7b227d116086ef2023ae9b8b0eef8288c46cf3c (patch) | |
tree | b8ca760bb87433856054565563ce8621455eacc9 /sw/inc | |
parent | c3c0826b9c300d84d10dcca90b22ae662211316a (diff) |
sw: prefix members of SwUndoDelLayFormat
See tdf#94879 for motivation.
Change-Id: I16fe75a5a7fd586e021cd5d49676031b97838165
Reviewed-on: https://gerrit.libreoffice.org/77867
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/undobj.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/undobj.hxx b/sw/inc/undobj.hxx index b9acf4952804..030c7087bfe6 100644 --- a/sw/inc/undobj.hxx +++ b/sw/inc/undobj.hxx @@ -320,7 +320,7 @@ public: class SwUndoDelLayFormat : public SwUndoFlyBase { - bool bShowSelFrame; + bool m_bShowSelFrame; public: SwUndoDelLayFormat( SwFrameFormat* pFormat ); @@ -329,7 +329,7 @@ public: void RedoForRollback(); - void ChgShowSel( bool bNew ) { bShowSelFrame = bNew; } + void ChgShowSel( bool bNew ) { m_bShowSelFrame = bNew; } virtual SwRewriter GetRewriter() const override; |