sw/inc/PostItMgr.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
New commits: commit fd0ca411ee6963d575e16397a7a11549a5ca2ebe Author: Miklos Vajna <[email protected]> Date: Mon Jun 12 09:40:55 2017 +0200 sw: prefix members of SwNoteProps Change-Id: If1d50504d9d7efcb0f6b1b5ddf570d3016f40be5 Reviewed-on: https://gerrit.libreoffice.org/38686 Reviewed-by: Miklos Vajna <[email protected]> Tested-by: Jenkins <[email protected]> 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() { _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
