| 291 | } |
| 292 | |
| 293 | bool VcsFileChangesModel::removeUrl(const QModelIndex& parent, const QUrl& url) |
| 294 | { |
| 295 | const auto index = statusIndexForUrl(*this, parent, url); |
| 296 | return index.isValid() ? removeRow(index.row(), index.parent()) : false; |
| 297 | } |
| 298 | |
| 299 | } |
| 300 |