From 8c8521a8dcdaf19552479818ea381cdc9c0869ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gannaz?= Date: Mon, 1 Apr 2019 11:20:51 +0200 Subject: [PATCH] Library: reorder initialization of ResponseParser --- YACReaderLibrary/comic_vine/model/response_parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/comic_vine/model/response_parser.cpp b/YACReaderLibrary/comic_vine/model/response_parser.cpp index 06a6f0a3..0990a332 100644 --- a/YACReaderLibrary/comic_vine/model/response_parser.cpp +++ b/YACReaderLibrary/comic_vine/model/response_parser.cpp @@ -4,7 +4,7 @@ #include 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) { }