summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/EventLoop/Qt/QtEventLoop.h')
-rw-r--r--Swiften/EventLoop/Qt/QtEventLoop.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/Swiften/EventLoop/Qt/QtEventLoop.h b/Swiften/EventLoop/Qt/QtEventLoop.h
index 3f5e93c..b1644c2 100644
--- a/Swiften/EventLoop/Qt/QtEventLoop.h
+++ b/Swiften/EventLoop/Qt/QtEventLoop.h
@@ -1,12 +1,12 @@
/*
- * Copyright (c) 2010-2015 Isode Limited.
+ * Copyright (c) 2010-2016 Isode Limited.
* All rights reserved.
* See the COPYING file for more information.
*/
#pragma once
-#include <boost/thread.hpp>
+#include <mutex>
#include <QCoreApplication>
#include <QEvent>
@@ -24,7 +24,7 @@ namespace Swift {
protected:
virtual void eventPosted() {
- boost::recursive_mutex::scoped_lock lock(isEventInQtEventLoopMutex_);
+ std::unique_lock<std::recursive_mutex> lock(isEventInQtEventLoopMutex_);
if (!isEventInQtEventLoop_) {
isEventInQtEventLoop_ = true;
QCoreApplication::postEvent(this, new Event());
@@ -35,7 +35,7 @@ namespace Swift {
Event* event = dynamic_cast<Event*>(qevent);
if (event) {
{
- boost::recursive_mutex::scoped_lock lock(isEventInQtEventLoopMutex_);
+ std::unique_lock<std::recursive_mutex> lock(isEventInQtEventLoopMutex_);
isEventInQtEventLoop_ = false;
}
handleNextEvents();
@@ -54,6 +54,6 @@ namespace Swift {
};
bool isEventInQtEventLoop_;
- boost::recursive_mutex isEventInQtEventLoopMutex_;
+ std::recursive_mutex isEventInQtEventLoopMutex_;
};
}