Fixed warning

This commit is contained in:
Luis Ángel San Martín 2017-05-26 17:18:50 +02:00
parent 6a6f983115
commit 8f7af955c2

View File

@ -10,7 +10,7 @@ extern"C" {
} }
CompressedArchive::CompressedArchive(const QString & filePath, QObject *parent) : 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 //open file
stream = ar_open_file(filePath.toStdString().c_str()); stream = ar_open_file(filePath.toStdString().c_str());