sw/source/core/access/accmap.cxx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)
New commits: commit 25bda5d887b12015e0f7d32753408b20544b5566 Author: Michael Weghorn <m.wegh...@posteo.de> AuthorDate: Wed Jan 24 10:52:18 2024 +0100 Commit: Michael Weghorn <m.wegh...@posteo.de> CommitDate: Thu Jan 25 09:40:58 2024 +0100 sw a11y: Drop VEC_SHAPE typedef Change-Id: Icd52756c729c5f8f4da1e6096e776a3a0d1a6260 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/162515 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.wegh...@posteo.de> diff --git a/sw/source/core/access/accmap.cxx b/sw/source/core/access/accmap.cxx index bbb88a10a59b..ebc877601efc 100644 --- a/sw/source/core/access/accmap.cxx +++ b/sw/source/core/access/accmap.cxx @@ -1493,9 +1493,8 @@ void SwAccessibleMap::DoInvalidateShapeSelection(bool bInvalidateFocusMode /*=fa if( !pShapes ) return; - typedef std::vector< ::rtl::Reference < ::accessibility::AccessibleShape > > VEC_SHAPE; - VEC_SHAPE vecxShapeAdd; - VEC_SHAPE vecxShapeRemove; + std::vector<::rtl::Reference<::accessibility::AccessibleShape>> vecxShapeAdd; + std::vector<::rtl::Reference<::accessibility::AccessibleShape>> vecxShapeRemove; int nCountSelectedShape=0; vcl::Window *pWin = GetShell()->GetWin();