summaryrefslogtreecommitdiffstats
path: root/desktop/source/offacc/acceptor.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'desktop/source/offacc/acceptor.hxx')
-rw-r--r--desktop/source/offacc/acceptor.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/desktop/source/offacc/acceptor.hxx b/desktop/source/offacc/acceptor.hxx
index 36b3e181cc93..9e210459a544 100644
--- a/desktop/source/offacc/acceptor.hxx
+++ b/desktop/source/offacc/acceptor.hxx
@@ -30,10 +30,11 @@
#include <cppuhelper/implbase.hxx>
#include <comphelper/weakbag.hxx>
-#include <osl/mutex.hxx>
#include <osl/conditn.hxx>
#include <osl/thread.hxx>
+#include <mutex>
+
namespace com::sun::star::uno { class XComponentContext; }
namespace desktop {
@@ -42,7 +43,7 @@ class Acceptor
: public ::cppu::WeakImplHelper<css::lang::XServiceInfo, css::lang::XInitialization>
{
private:
- osl::Mutex m_aMutex;
+ std::mutex m_aMutex;
oslThread m_thread;
comphelper::WeakBag< css::bridge::XBridge > m_bridges;