[Libreoffice-commits] core.git: sw/inc

Miklos Vajna vmiklos at collabora.co.uk
Mon Jun 12 10:32:38 UTC 2017


 sw/inc/PostItMgr.hxx |    8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

New commits:
commit fd0ca411ee6963d575e16397a7a11549a5ca2ebe
Author: Miklos Vajna <vmiklos at collabora.co.uk>
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 <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>

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()
         {


More information about the Libreoffice-commits mailing list