| 466 | } |
| 467 | |
| 468 | void ExportInstanceDialog::savePackIgnore() |
| 469 | { |
| 470 | auto data = proxyModel->blockedPaths().toStringList().join('\n').toUtf8(); |
| 471 | auto filename = ignoreFileName(); |
| 472 | try |
| 473 | { |
| 474 | FS::write(filename, data); |
| 475 | } |
| 476 | catch (const Exception &e) |
| 477 | { |
| 478 | qWarning() << e.cause(); |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | #include "ExportInstanceDialog.moc" |
nothing calls this directly
no test coverage detected