summaryrefslogtreecommitdiff
path: root/sw/inc/breakit.hxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2018-01-15 09:09:35 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2018-01-15 14:07:03 +0100
commitd54824438b29e433e6178a822e9207dfe28ef9af (patch)
treec05950254f8c541b1ee88a5dc648e933af129c07 /sw/inc/breakit.hxx
parent7201d157a2ff2f0a8b6bb8fa57e31871187cbc81 (diff)
sw: prefix members of SwAuthorField, SwBreakIt and SwCombinedCharField
Change-Id: Ic277b91a75602b0997ff68feb46a9cad9dae4e46 Reviewed-on: https://gerrit.libreoffice.org/47891 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/breakit.hxx')
-rw-r--r--sw/inc/breakit.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/breakit.hxx b/sw/inc/breakit.hxx
index 4b0017a79a13..2dc5af732927 100644
--- a/sw/inc/breakit.hxx
+++ b/sw/inc/breakit.hxx
@@ -39,7 +39,7 @@ class SW_DLLPUBLIC SwBreakIt
std::unique_ptr<LanguageTag> m_xLanguageTag; ///< language tag of the current locale
std::unique_ptr<css::i18n::ForbiddenCharacters> m_xForbidden;
- LanguageType aForbiddenLang; ///< language of the current forbiddenChar struct
+ LanguageType m_aForbiddenLang; ///< language of the current forbiddenChar struct
void GetLocale_( const LanguageType aLang );
void GetLocale_( const LanguageTag& rLanguageTag );
@@ -103,7 +103,7 @@ public:
const css::i18n::ForbiddenCharacters& GetForbidden( const LanguageType aLang )
{
- if (!m_xForbidden || aForbiddenLang != aLang)
+ if (!m_xForbidden || m_aForbiddenLang != aLang)
GetForbidden_( aLang );
return *m_xForbidden;
}