From 8f7af955c24c1089fcfc4b15289580fa6ee096df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Fri, 26 May 2017 17:18:50 +0200 Subject: [PATCH] Fixed warning --- compressed_archive/unarr/compressed_archive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressed_archive/unarr/compressed_archive.cpp b/compressed_archive/unarr/compressed_archive.cpp index 98709cb0..f2c682ba 100644 --- a/compressed_archive/unarr/compressed_archive.cpp +++ b/compressed_archive/unarr/compressed_archive.cpp @@ -10,7 +10,7 @@ extern"C" { } CompressedArchive::CompressedArchive(const QString & filePath, QObject *parent) : - QObject(parent),valid(false),tools(true),numFiles(0),ar(NULL),stream(NULL) + QObject(parent),tools(true),valid(false),numFiles(0),ar(NULL),stream(NULL) { //open file stream = ar_open_file(filePath.toStdString().c_str());