| 400 | } |
| 401 | |
| 402 | void ProjectBuildSetModel::moveRowsUp(int row, int count) |
| 403 | { |
| 404 | Q_D(ProjectBuildSetModel); |
| 405 | |
| 406 | QList<BuildItem> items = d->items.mid(row, count); |
| 407 | removeRows( row, count ); |
| 408 | insertItemsOverrideCache( row - 1, items ); |
| 409 | } |
| 410 | |
| 411 | void ProjectBuildSetModel::moveRowsToTop(int row, int count) |
| 412 | { |