| 434 | } |
| 435 | |
| 436 | QStringList JlCompress::getFileList(QString fileCompressed) { |
| 437 | // Open zip |
| 438 | QuaZip* zip = new QuaZip(QFileInfo(fileCompressed).absoluteFilePath()); |
| 439 | return getFileList(zip); |
| 440 | } |
| 441 | |
| 442 | QStringList JlCompress::getFileList(QuaZip *zip) |
| 443 | { |
nothing calls this directly
no test coverage detected