| 109 | } |
| 110 | |
| 111 | QString cleanPath(QString path) |
| 112 | { |
| 113 | if (path == ".") |
| 114 | return QString(); |
| 115 | QString result = path; |
| 116 | if (result.startsWith("./")) |
| 117 | result = result.mid(2); |
| 118 | return result; |
| 119 | } |
| 120 | |
| 121 | void InstanceImportTask::processZipPack() |
| 122 | { |
no test coverage detected