Fix warning.

This commit is contained in:
Martin Rotter 2016-02-11 19:46:07 +01:00
parent 0d909cd8b6
commit 1b70900235

View File

@ -25,7 +25,7 @@
#include <QMetaType>
FeedDownloader::FeedDownloader(QObject *parent) : QObject(parent), m_stopUpdate(false), m_isUpdateRunning(false) {
FeedDownloader::FeedDownloader(QObject *parent) : QObject(parent), m_isUpdateRunning(false), m_stopUpdate(false) {
qRegisterMetaType<FeedDownloadResults>("FeedDownloadResults");
}