2) load files from ZIP
| 610 | projectFs->removeDirRecursively(); // 1) get a clean initial state |
| 611 | projectFs->loadFromZip(projectFp); // 2) load files from ZIP |
| 612 | foreach (const QString& fn, projectFs->getFiles()) { |
| 613 | if (fn.endsWith(".lpp")) { |
| 614 | projectFileName = fn; |
| 615 | } |
| 616 | } |
| 617 | } else { |
| 618 | projectFs = TransactionalFileSystem::open(projectFp.getParentDir(), save); |
| 619 | projectFileName = projectFp.getFilename(); |
no test coverage detected