diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2021-10-18 08:03:17 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2021-10-18 08:52:59 +0200 |
commit | 5eb9ad92ac6169d7aab92452ce9e1219441f4e52 (patch) | |
tree | d0c048889252429e8a1f9fac31b328b5e250338a /sw/inc | |
parent | e0b04e19bd71ce00f81b111399dad3b9da79e224 (diff) |
sw: prefix members of MailDeliveryErrorNotifier, SwAddressIterator, ...
... SwAddressPreview and SwCondCollItem
See tdf#94879 for motivation.
Change-Id: I6702b3d2287aa3c9df1bac8520746901ae2e2f25
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123729
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sw/inc')
-rw-r--r-- | sw/inc/ccoll.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/inc/ccoll.hxx b/sw/inc/ccoll.hxx index 29eafc11240c..dffe09b4eb60 100644 --- a/sw/inc/ccoll.hxx +++ b/sw/inc/ccoll.hxx @@ -39,7 +39,7 @@ OUString GetCommandContextByIndex( sal_Int16 nIndex ); class SW_DLLPUBLIC SwCondCollItem final : public SfxPoolItem { - static const CommandStruct aCmds[COND_COMMAND_COUNT]; + static const CommandStruct s_aCmds[COND_COMMAND_COUNT]; OUString m_sStyles[COND_COMMAND_COUNT]; @@ -55,7 +55,7 @@ public: virtual SwCondCollItem* Clone( SfxItemPool *pPool = nullptr ) const override; virtual bool operator==( const SfxPoolItem& ) const override; - static const CommandStruct* GetCmds() { return aCmds; } + static const CommandStruct* GetCmds() { return s_aCmds; } OUString GetStyle(sal_uInt16 nPos) const; void SetStyle(const OUString* pStyle, sal_uInt16 nPos); |