Library: reorder initialization of ResponseParser

This commit is contained in:
François Gannaz 2019-04-01 11:20:51 +02:00
parent ebcb52bf16
commit 8c8521a8dc

View File

@ -4,7 +4,7 @@
#include <QDebug> #include <QDebug>
ResponseParser::ResponseParser(QObject *parent) : ResponseParser::ResponseParser(QObject *parent) :
QObject(parent),error(false),numResults(-1),currentPage(-1),totalPages(-1),errorTxt("None") QObject(parent),error(false),errorTxt("None"),numResults(-1),currentPage(-1),totalPages(-1)
{ {
} }