| 391 | } |
| 392 | |
| 393 | void ProjectBuildSetModel::moveRowsToBottom(int row, int count) |
| 394 | { |
| 395 | Q_D(ProjectBuildSetModel); |
| 396 | |
| 397 | QList<BuildItem> items = d->items.mid(row, count); |
| 398 | removeRows( row, count ); |
| 399 | insertItemsOverrideCache( rowCount(), items ); |
| 400 | } |
| 401 | |
| 402 | void ProjectBuildSetModel::moveRowsUp(int row, int count) |
| 403 | { |