From b0aae09e6c565f5578672f38ebb1fed36784bdff Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Sun, 5 Sep 2021 15:52:48 +0200 Subject: clang-tidy:readability-redundant-member-init Change-Id: I706eebc3e4e2bbcb9bf250a4864937fd1447498c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121690 Tested-by: Jenkins Reviewed-by: Noel Grandin --- sw/source/uibase/docvw/SidebarWinAcc.cxx | 4 +--- 1 file changed, 1 insertion(+), 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 5859ebc83199..9c2247c0e55f 100644 --- a/sw/source/uibase/docvw/SidebarWinAcc.cxx +++ b/sw/source/uibase/docvw/SidebarWinAcc.cxx @@ -41,7 +41,6 @@ class SidebarWinAccessibleContext : public VCLXAccessibleComponent : VCLXAccessibleComponent( dynamic_cast(rSidebarWin.CreateAccessible().get()) ) , mrViewShell( rViewShell ) , mpAnchorFrame( pAnchorFrame ) - , maMutex() { rSidebarWin.SetAccessibleRole( css::accessibility::AccessibleRole::COMMENT ); } @@ -98,8 +97,7 @@ class SidebarWinAccessibleContext : public VCLXAccessibleComponent SidebarWinAccessible::SidebarWinAccessible( sw::annotation::SwAnnotationWin& rSidebarWin, SwViewShell& rViewShell, const SwSidebarItem& rSidebarItem ) - : VCLXWindow() - , mrSidebarWin( rSidebarWin ) + : mrSidebarWin( rSidebarWin ) , mrViewShell( rViewShell ) , mpAnchorFrame( rSidebarItem.maLayoutInfo.mpAnchorFrame ) , bAccContextCreated( false ) -- cgit