summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/glshell.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-11-22 08:04:23 +0100
committerMiklos Vajna <vmiklos@collabora.com>2021-11-22 09:09:27 +0100
commite6b75a22dfbf81b6eca628384ae1c4bc499c50a3 (patch)
tree896f27bb522449224dc86ff1e503cd0de4ee2ddb /sw/source/uibase/inc/glshell.hxx
parent7b0f5178d81e2673345f88abec2e5656f841627e (diff)
sw: prefix members of SwDBManager, SwWebGlosDocShell, SwWordCountWrapper ...
... and SwZoomControl See tdf#94879 for motivation. Change-Id: I74f31e45a8c215d406371a23b64d548fbb851d28 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125641 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/inc/glshell.hxx')
-rw-r--r--sw/source/uibase/inc/glshell.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/sw/source/uibase/inc/glshell.hxx b/sw/source/uibase/inc/glshell.hxx
index 1fcd51b370df..0b13b7681227 100644
--- a/sw/source/uibase/inc/glshell.hxx
+++ b/sw/source/uibase/inc/glshell.hxx
@@ -51,9 +51,9 @@ public:
class SwWebGlosDocShell final : public SwWebDocShell
{
- OUString aLongName;
- OUString aShortName;
- OUString aGroupName;
+ OUString m_aLongName;
+ OUString m_aShortName;
+ OUString m_aGroupName;
virtual bool Save() override;
@@ -71,11 +71,11 @@ public:
void Execute( SfxRequest& );
void GetState( SfxItemSet& );
void SetLongName( const OUString& rLongName )
- { aLongName = rLongName; }
+ { m_aLongName = rLongName; }
void SetShortName( const OUString& rShortName )
- { aShortName = rShortName; }
+ { m_aShortName = rShortName; }
void SetGroupName( const OUString& rGroupName )
- { aGroupName = rGroupName; }
+ { m_aGroupName = rGroupName; }
};
#endif