* Cosmetic change. Replace Qt keyword emit with Q_EMIT.

* Whitespace fixes.
This commit is contained in:
Mateusz Skowroński
2017-01-05 22:38:23 +01:00
parent 96dc57c068
commit 9b07616fe6
7 changed files with 407 additions and 407 deletions

View File

@@ -70,7 +70,7 @@ SignalThread::run(void)
// just wait, and trigger every time we receive a signal
this->waitcond.wait(&this->mutex);
if (!this->isstopped) {
emit triggerSignal();
Q_EMIT triggerSignal();
}
}
}