From 26bd14e43d7d5e81c97085f12abf1523d03bdf9a Mon Sep 17 00:00:00 2001 From: Miklos Vajna Date: Mon, 29 Nov 2021 08:17:59 +0100 Subject: sw: prefix members of FieldDocWatchingStack, NaviContentBookmark, ... ... SwTransferDdeLink and sw::sidebarwindows::SidebarWinAccessible See tdf#94879 for motivation. Change-Id: I4aba516260ad1f55081c91d8812ca9060ad11bb1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126010 Reviewed-by: Miklos Vajna Tested-by: Jenkins --- sw/source/uibase/docvw/SidebarWinAcc.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sw/source/uibase/docvw/SidebarWinAcc.cxx') diff --git a/sw/source/uibase/docvw/SidebarWinAcc.cxx b/sw/source/uibase/docvw/SidebarWinAcc.cxx index 9c2247c0e55f..54c30f518440 100644 --- a/sw/source/uibase/docvw/SidebarWinAcc.cxx +++ b/sw/source/uibase/docvw/SidebarWinAcc.cxx @@ -100,7 +100,7 @@ SidebarWinAccessible::SidebarWinAccessible( sw::annotation::SwAnnotationWin& rSi : mrSidebarWin( rSidebarWin ) , mrViewShell( rViewShell ) , mpAnchorFrame( rSidebarItem.maLayoutInfo.mpAnchorFrame ) - , bAccContextCreated( false ) + , m_bAccContextCreated( false ) { SetWindow( &mrSidebarWin ); } @@ -111,7 +111,7 @@ SidebarWinAccessible::~SidebarWinAccessible() void SidebarWinAccessible::ChangeSidebarItem( const SwSidebarItem& rSidebarItem ) { - if ( !bAccContextCreated ) + if ( !m_bAccContextCreated ) return; css::uno::Reference< css::accessibility::XAccessibleContext > xAcc @@ -133,7 +133,7 @@ css::uno::Reference< css::accessibility::XAccessibleContext > SidebarWinAccessib new SidebarWinAccessibleContext( mrSidebarWin, mrViewShell, mpAnchorFrame ); - bAccContextCreated = true; + m_bAccContextCreated = true; return pAccContext; } -- cgit