summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-24 19:10:44 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-25 09:28:02 +0100
commitebdc45cda44618c4f165f01de2a5466ee6fb2242 (patch)
tree35a4ad9cd001c7ea3ca28bd2b6d79570dc6549c4 /svx
parent9660c79a7933a6ae123d5760c123dd71851b9ff5 (diff)
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.grandin@collabora.co.uk>
Diffstat (limited to 'svx')
-rw-r--r--svx/source/table/tabledesign.cxx2
1 files changed, 0 insertions, 2 deletions
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 ) );
}