summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2021-12-18 20:57:01 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2021-12-20 18:12:48 +0100
commit97d00de4afe9827ddaf299cfdfa8534425a11fe6 (patch)
tree143682a896c20a8ecb0a4a2a28730cdca3b204be /include/editeng
parent1dc917b86cc1ae68dd9469e89c6f6aa2f9da5347 (diff)
osl::Mutex->std::mutex in SvxUnoTextContent
Change-Id: I78c576cabc91488c9496aa684f42dde47f004103 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127115 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/unotext.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/editeng/unotext.hxx b/include/editeng/unotext.hxx
index d87bd38f98cc..87dc02a37c09 100644
--- a/include/editeng/unotext.hxx
+++ b/include/editeng/unotext.hxx
@@ -41,11 +41,11 @@
#include <com/sun/star/style/LineSpacing.hpp>
#include <com/sun/star/style/TabStop.hpp>
#include <com/sun/star/lang/XUnoTunnel.hpp>
-#include <comphelper/interfacecontainer3.hxx>
+#include <comphelper/interfacecontainer4.hxx>
#include <cppuhelper/implbase1.hxx>
#include <cppuhelper/weakagg.hxx>
#include <osl/diagnose.hxx>
-#include <osl/mutex.hxx>
+#include <mutex>
#include <comphelper/servicehelper.hxx>
#include <svl/itemset.hxx>
#include <svl/solar.hrc>
@@ -522,8 +522,8 @@ private:
const SvxUnoTextBase& mrParentText;
// for xComponent
- ::osl::Mutex maDisposeContainerMutex;
- ::comphelper::OInterfaceContainerHelper3<css::lang::XEventListener> maDisposeListeners;
+ std::mutex maDisposeContainerMutex;
+ ::comphelper::OInterfaceContainerHelper4<css::lang::XEventListener> maDisposeListeners;
bool mbDisposing;
protected: