sw/source/core/access/accfrmobjslist.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-)
New commits: commit 63456ae59bead30d4af6e9a9b2e80ab6dd37f58d Author: Michael Weghorn <m.wegh...@posteo.de> AuthorDate: Thu May 1 17:26:35 2025 +0200 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Thu May 1 23:10:48 2025 +0200 sw a11y: Drop extra raw pointer local var Change-Id: Id30fe72601bafd72fd4076dfd0be3add0bbd1419 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/184871 Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> Tested-by: Jenkins diff --git a/sw/source/core/access/accfrmobjslist.cxx b/sw/source/core/access/accfrmobjslist.cxx index c62987798ccc..ab6d42bf6a9f 100644 --- a/sw/source/core/access/accfrmobjslist.cxx +++ b/sw/source/core/access/accfrmobjslist.cxx @@ -131,8 +131,7 @@ SwAccessibleChildSList_const_iterator& SwAccessibleChildSList_const_iterator::ne m_rList.GetAccMap().GetContextImpl( &rFrame, false ); if( xAccImpl.is() ) { - SwAccessibleContext* pAccImpl = xAccImpl.get(); - m_aCurr = SwAccessibleChild( pAccImpl->GetAdditionalAccessibleChild( m_nNextObj - nObjsCount ) ); + m_aCurr = SwAccessibleChild(xAccImpl->GetAdditionalAccessibleChild(m_nNextObj - nObjsCount)); ++m_nNextObj; } }