| 209 | } |
| 210 | |
| 211 | void ExportInstanceDialog::savePackIgnore() |
| 212 | { |
| 213 | auto ignoreData = proxyModel->blockedPaths().toStringList().join('\n').toUtf8(); |
| 214 | auto filename = ignoreFileName(); |
| 215 | try { |
| 216 | FS::write(filename, ignoreData); |
| 217 | } catch (const Exception& e) { |
| 218 | qWarning() << e.cause(); |
| 219 | } |
| 220 | } |
nothing calls this directly
no test coverage detected