summaryrefslogtreecommitdiff
path: root/sw/source/uibase/inc/glshell.hxx
diff options
context:
space:
mode:
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