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

Miklos Vajna vmiklos at collabora.co.uk
Mon Feb 6 10:34:21 UTC 2017


 sw/source/core/access/acccontext.cxx |    4 ++--
 sw/source/core/access/accframe.cxx   |    2 +-
 sw/source/core/access/accframe.hxx   |    2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

New commits:
commit ad6fd88ae8a1f0d5caf509b776920c0f1ea42df5
Author: Miklos Vajna <vmiklos at collabora.co.uk>
Date:   Mon Feb 6 09:07:30 2017 +0100

    sw: prefix members of SwAccessibleFrame
    
    Change-Id: Ia8513e6c9c32c9c80c7b261eb356ae793ae7ab32
    Reviewed-on: https://gerrit.libreoffice.org/33951
    Reviewed-by: Miklos Vajna <vmiklos at collabora.co.uk>
    Tested-by: Jenkins <ci at libreoffice.org>

diff --git a/sw/source/core/access/acccontext.cxx b/sw/source/core/access/acccontext.cxx
index fbb95ca..0da5b6c 100644
--- a/sw/source/core/access/acccontext.cxx
+++ b/sw/source/core/access/acccontext.cxx
@@ -552,7 +552,7 @@ sal_Int32 SAL_CALL SwAccessibleContext::getAccessibleChildCount()
     CHECK_FOR_DEFUNC( XAccessibleContext )
     //Notify the frame is a document
     if (m_nRole == AccessibleRole::DOCUMENT_TEXT)
-        bIsAccDocUse = true;
+        m_bIsAccDocUse = true;
 
     return m_isDisposing ? 0 : GetChildCount( *(GetMap()) );
 }
@@ -566,7 +566,7 @@ uno::Reference< XAccessible> SAL_CALL
 
     //Notify the frame is a document
     if (m_nRole == AccessibleRole::DOCUMENT_TEXT)
-        bIsAccDocUse = true;
+        m_bIsAccDocUse = true;
 
     const SwAccessibleChild aChild( GetChild( *(GetMap()), nIndex ) );
     if( !aChild.IsValid() )
diff --git a/sw/source/core/access/accframe.cxx b/sw/source/core/access/accframe.cxx
index b4beb8c..cd231bb 100644
--- a/sw/source/core/access/accframe.cxx
+++ b/sw/source/core/access/accframe.cxx
@@ -416,7 +416,7 @@ SwAccessibleFrame::SwAccessibleFrame( const SwRect& rVisArea,
     maVisArea( rVisArea ),
     mpFrame( pF ),
     mbIsInPagePreview( bIsPagePreview ),
-    bIsAccDocUse( false )
+    m_bIsAccDocUse( false )
 {
 }
 
diff --git a/sw/source/core/access/accframe.hxx b/sw/source/core/access/accframe.hxx
index 8a4ef37..56e8814 100644
--- a/sw/source/core/access/accframe.hxx
+++ b/sw/source/core/access/accframe.hxx
@@ -103,7 +103,7 @@ protected:
     virtual ~SwAccessibleFrame();
 
     // MT: Move to private area?
-    bool bIsAccDocUse;
+    bool m_bIsAccDocUse;
 public:
     // Return the SwFrame this context is attached to.
     const SwFrame* GetFrame() const { return mpFrame; };


More information about the Libreoffice-commits mailing list