| 82 | } |
| 83 | |
| 84 | void SelectFilesDialog::updateFileStringListModel() |
| 85 | { |
| 86 | QStringList l; |
| 87 | foreach (QSharedPointer<QFile> file, files) { |
| 88 | l.append(QFileInfo(*file).fileName()); |
| 89 | } |
| 90 | filesStringListModel.setStringList(l); |
| 91 | } |
| 92 | |
| 93 | void SelectFilesDialog::addButtonClicked() |
| 94 | { |
nothing calls this directly
no outgoing calls
no test coverage detected