summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-18 13:02:17 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-19 17:46:47 +0100
commit64589ddc911ed7bcc334adecd46b472adfec15f2 (patch)
tree0d43198cc540c5f5f99e7eab8fc1d7ff73e9316f /comphelper
parent3fd6e05a77e0e9ca1db6c7f9e5a1b17d32250b36 (diff)
use more cppu::BaseMutex
Change-Id: I7ac096acfde05aa58a48fb76e895e880e27225d1 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127085 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/genericpropertyset.cxx9
1 files changed, 2 insertions, 7 deletions
diff --git a/comphelper/source/property/genericpropertyset.cxx b/comphelper/source/property/genericpropertyset.cxx
index 26f21e987e29..b9a8bf84af45 100644
--- a/comphelper/source/property/genericpropertyset.cxx
+++ b/comphelper/source/property/genericpropertyset.cxx
@@ -44,19 +44,14 @@ namespace comphelper
{
namespace {
- struct IMPL_GenericPropertySet_MutexContainer
- {
- Mutex maMutex;
- };
-
class GenericPropertySet : public OWeakAggObject,
public XServiceInfo,
public XTypeProvider,
- public PropertySetHelper,
- private IMPL_GenericPropertySet_MutexContainer
+ public PropertySetHelper
{
private:
std::map<OUString, Any> maAnyMap;
+ osl::Mutex maMutex;
comphelper::OMultiTypeInterfaceContainerHelperVar3<XPropertyChangeListener, OUString> m_aListener;
protected: