diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-12 09:40:55 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2017-06-12 12:32:14 +0200 |
commit | fd0ca411ee6963d575e16397a7a11549a5ca2ebe (patch) | |
tree | f1144938b4da6888b816105722ac036c079ec27c /sw/inc/PostItMgr.hxx | |
parent | daa2e16d2f874508257a809aee183ffd7fd8eacf (diff) |
sw: prefix members of SwNoteProps
Change-Id: If1d50504d9d7efcb0f6b1b5ddf570d3016f40be5
Reviewed-on: https://gerrit.libreoffice.org/38686
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
Diffstat (limited to 'sw/inc/PostItMgr.hxx')
-rw-r--r-- | sw/inc/PostItMgr.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sw/inc/PostItMgr.hxx b/sw/inc/PostItMgr.hxx index 38f2bbff3ff3..df2a2842fe5a 100644 --- a/sw/inc/PostItMgr.hxx +++ b/sw/inc/PostItMgr.hxx @@ -105,26 +105,26 @@ struct FieldShadowState class SwNoteProps: public utl::ConfigItem { private: - bool bIsShowAnchor; + bool m_bIsShowAnchor; virtual void ImplCommit() override; public: SwNoteProps() : ConfigItem("Office.Writer/Notes") - , bIsShowAnchor(false) + , m_bIsShowAnchor(false) { const css::uno::Sequence< OUString >& rNames = GetPropertyNames(); css::uno::Sequence< css::uno::Any > aValues = GetProperties(rNames); const css::uno::Any* pValues = aValues.getConstArray(); SAL_WARN_IF(aValues.getLength() != rNames.getLength(), "sw", "GetProperties failed"); if (aValues.getLength()) - pValues[0]>>=bIsShowAnchor; + pValues[0]>>=m_bIsShowAnchor; } bool IsShowAnchor() { - return bIsShowAnchor; + return m_bIsShowAnchor; } static css::uno::Sequence< OUString >& GetPropertyNames() { |