summaryrefslogtreecommitdiff
path: root/sw/inc
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-03-29 08:50:50 +0200
committerMiklos Vajna <vmiklos@collabora.com>2021-03-29 11:13:57 +0200
commit965c23e21df1f8b7f2d77db0b35953957f72c04a (patch)
treeb2ecc40b8d46a43ad8348f47dc0da5ef0fb304ac /sw/inc
parent3453f2f8fce9e69cd9f2a2c6f3d7171b6e59f674 (diff)
sw: prefix members of IndexEntrySupplierWrapper, SwDropCapCache, ...
... SwFootnoteSave and XmlPortionDumper See tdf#94879 for motivation. Change-Id: Ibd956314173cfd18e15c7c6b3c75d655bc9adf55 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/113292 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r--sw/inc/toxwrap.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/inc/toxwrap.hxx b/sw/inc/toxwrap.hxx
index 63a09b323ff0..9427f9f5eafd 100644
--- a/sw/inc/toxwrap.hxx
+++ b/sw/inc/toxwrap.hxx
@@ -30,14 +30,14 @@ namespace com::sun::star::i18n { class XExtendedIndexEntrySupplier; }
class SW_DLLPUBLIC IndexEntrySupplierWrapper
{
- css::lang::Locale aLcl;
- css::uno::Reference < css::i18n::XExtendedIndexEntrySupplier > xIES;
+ css::lang::Locale m_aLcl;
+ css::uno::Reference < css::i18n::XExtendedIndexEntrySupplier > m_xIES;
public:
IndexEntrySupplierWrapper();
~IndexEntrySupplierWrapper();
- void SetLocale( const css::lang::Locale& rLocale ) { aLcl = rLocale; }
+ void SetLocale( const css::lang::Locale& rLocale ) { m_aLcl = rLocale; }
OUString GetIndexKey( const OUString& rText, const OUString& rTextReading,
const css::lang::Locale& rLocale ) const;