From 3657745f8b90c215dd229d25c768de56a8200b1a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Gannaz?= Date: Mon, 1 Apr 2019 11:07:07 +0200 Subject: [PATCH] Library: reorder initialization of YACReaderHttpSession --- YACReaderLibrary/server/yacreader_http_session.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/server/yacreader_http_session.cpp b/YACReaderLibrary/server/yacreader_http_session.cpp index 5b2d0be6..ba9e7ae7 100644 --- a/YACReaderLibrary/server/yacreader_http_session.cpp +++ b/YACReaderLibrary/server/yacreader_http_session.cpp @@ -1,7 +1,7 @@ #include "yacreader_http_session.h" YACReaderHttpSession::YACReaderHttpSession(QObject *parent) - : QObject(parent), comic(nullptr), remoteComic(nullptr), comicId(0), remoteComicId(0) + : QObject(parent), comicId(0), remoteComicId(0), comic(nullptr), remoteComic(nullptr) { }