| 59 | } |
| 60 | |
| 61 | auto DevicePathProxyModel::insertRows(int row, int count, const QModelIndex &parent) -> bool |
| 62 | { |
| 63 | beginInsertRows(parent, row, row + count - 1); |
| 64 | for(int c = 0; c < count; ++c) |
| 65 | boot_entry_list_model->insertEntryFilePath(boot_entry_index, row + c, {}); |
| 66 | |
| 67 | endInsertRows(); |
| 68 | return true; |
| 69 | } |
| 70 | |
| 71 | auto DevicePathProxyModel::removeRows(int row, int count, const QModelIndex &parent) -> bool |
| 72 | { |
nothing calls this directly
no test coverage detected