| 8095 | void DataModel::ProjectModel::deleteSelectedItems(const QVariantList& items) |
| 8096 | { |
| 8097 | struct Entry { |
| 8098 | int kind; |
| 8099 | int id; |
| 8100 | int parentId; |
| 8101 | QString path; |
| 8102 | }; |
| 8103 | |
| 8104 | QList<Entry> entries; |
| 8105 | entries.reserve(items.size()); |