| 168 | } |
| 169 | |
| 170 | ExportDialog::~ExportDialog() |
| 171 | { |
| 172 | cancel(); |
| 173 | for (ExportWorker *worker : qAsConst(workers)) |
| 174 | { |
| 175 | worker->wait(); |
| 176 | delete worker; |
| 177 | } |
| 178 | delete ui; |
| 179 | } |
| 180 | |
| 181 | bool ExportDialog::initWork(ExportWorkItem *work, uint64_t seed, int tx, int tz) |
| 182 | { |
nothing calls this directly
no outgoing calls
no test coverage detected