fixed memory leak in CompressedArchive

This commit is contained in:
Luis Ángel San Martín
2013-08-27 19:22:24 +02:00
parent adcd9f820d
commit 3125190184
4 changed files with 10 additions and 12 deletions

View File

@ -406,10 +406,6 @@ QList<QVector<quint32> > FileComic::getSections(int & sectionIndex)
void FileComic::process()
{
QTime myTimer;
myTimer.start();
// do something..
CompressedArchive archive(_path);
//se filtran para obtener s<>lo los formatos soportados
_order = archive.getFileNames();
@ -459,7 +455,7 @@ void FileComic::process()
}*/
emit imagesLoaded();
moveToThread(QApplication::instance()->thread());
//moveToThread(QApplication::instance()->thread());
}