| 167 | } |
| 168 | |
| 169 | int SyncthingRecentChangesModel::columnCount(const QModelIndex &parent) const |
| 170 | { |
| 171 | if (!parent.isValid()) { |
| 172 | return 4; // action, device, folder, path |
| 173 | } else { |
| 174 | return 0; |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | void SyncthingRecentChangesModel::fileChanged(const SyncthingDir &dir, int index, const SyncthingFileChange &change) |
| 179 | { |
nothing calls this directly
no outgoing calls
no test coverage detected