1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 14:23:53 +00:00

Extra check for thread affinity.

This commit is contained in:
cc9cii 2015-05-30 19:17:42 +10:00
parent 76196d815d
commit 01eba7b721

View file

@ -1,6 +1,7 @@
#include "signalhandler.hpp"
#include <QMetaObject>
#include <QThread>
#include "../settings/usersettings.hpp"
@ -23,6 +24,13 @@ void CSMTools::SignalHandler::updateUserSetting (const QString &name, const QStr
// should be in the operations thread via an event message queue
void CSMTools::SignalHandler::updateExtraCheck (bool extraCheck)
{
if (thread()!=QThread::currentThread())
{
QMetaObject::invokeMethod(this,"updateExtraCheck", Qt::QueuedConnection, Q_ARG(bool, extraCheck));
return;
}
// extra safety
mExtraCheck = extraCheck;
}