| 496 | } |
| 497 | |
| 498 | void ExportInstanceDialog::savePackIgnore() |
| 499 | { |
| 500 | auto data = proxyModel->blockedPaths().toStringList().join('\n').toUtf8(); |
| 501 | auto filename = ignoreFileName(); |
| 502 | try |
| 503 | { |
| 504 | FS::write(filename, data); |
| 505 | } |
| 506 | catch (const Exception &e) |
| 507 | { |
| 508 | qWarning() << e.cause(); |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | #include "ExportInstanceDialog.moc" |
nothing calls this directly
no test coverage detected