bug fixed onpening next/previous folder

This commit is contained in:
Luis Ángel San Martín
2013-07-20 08:53:15 +02:00
parent bf8c0109eb
commit 0d83e0a117
4 changed files with 18 additions and 8 deletions

View File

@ -54,12 +54,10 @@ struct SevenZipInterface {
};
//SevenZipInterface * szInterface;
QLibrary * sevenzLib = 0;
CompressedArchive::CompressedArchive(const QString & filePath, QObject *parent) :
QObject(parent)
QObject(parent),sevenzLib(0)
{
szInterface = new SevenZipInterface;
//load functions
loadFunctions();

View File

@ -42,7 +42,7 @@ public slots:
QList<QString> getFileNames();
private:
SevenZipInterface * szInterface;
QLibrary * sevenzLib;
void loadFunctions();
};