2
0
mirror of https://github.com/kotatogram/kotatogram-desktop synced 2025-09-05 00:55:12 +00:00

fixed os x build

This commit is contained in:
John Preston
2015-09-29 21:59:26 +03:00
parent 58de461c19
commit 01374e6dc5
2 changed files with 5 additions and 1 deletions

View File

@@ -414,7 +414,7 @@ LocalImageLoader::~LocalImageLoader() {
}
TaskQueue::TaskQueue(QObject *parent, int32 stopTimeoutMs) : QObject(parent), _worker(0), _thread(0), _stopTimer(0) {
TaskQueue::TaskQueue(QObject *parent, int32 stopTimeoutMs) : QObject(parent), _thread(0), _worker(0), _stopTimer(0) {
if (stopTimeoutMs > 0) {
_stopTimer = new QTimer(this);
connect(_stopTimer, SIGNAL(timeout()), this, SLOT(stop()));