summaryrefslogtreecommitdiff
path: root/sw/source/uibase/docvw/SidebarWinAcc.cxx
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.com>2021-11-29 08:17:59 +0100
committerMiklos Vajna <vmiklos@collabora.com>2021-11-29 10:25:52 +0100
commit26bd14e43d7d5e81c97085f12abf1523d03bdf9a (patch)
tree37f014903d204ff1a1bfa83cf4478ddb2dbb8163 /sw/source/uibase/docvw/SidebarWinAcc.cxx
parentaad27c0316b710a1506e068c3f58d44388388ae9 (diff)
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 <vmiklos@collabora.com> Tested-by: Jenkins
Diffstat (limited to 'sw/source/uibase/docvw/SidebarWinAcc.cxx')
-rw-r--r--sw/source/uibase/docvw/SidebarWinAcc.cxx6
1 files changed, 3 insertions, 3 deletions
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;
}