svx/source/table/tabledesign.cxx | 2 -- 1 file changed, 2 deletions(-)
New commits: commit ebdc45cda44618c4f165f01de2a5466ee6fb2242 Author: Noel Grandin <noelgran...@gmail.com> AuthorDate: Fri Dec 24 19:10:44 2021 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Sat Dec 25 09:28:02 2021 +0100 no need to take SolarMutex in TableDesignFamily::createInstance the constructor doesn't actually do anything other than allocate memory Change-Id: Iff437111018a6025d3aa02c350f67983bc64b08e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127435 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/svx/source/table/tabledesign.cxx b/svx/source/table/tabledesign.cxx index b8888c14ca71..1694f8b9338d 100644 --- a/svx/source/table/tabledesign.cxx +++ b/svx/source/table/tabledesign.cxx @@ -623,8 +623,6 @@ void SAL_CALL TableDesignFamily::replaceByName( const OUString& rName, const Any Reference< XInterface > SAL_CALL TableDesignFamily::createInstance() { - SolarMutexGuard aGuard; - return Reference< XInterface >( static_cast< XStyle* >( new TableDesignStyle ) ); }