| 307 | } |
| 308 | |
| 309 | void ProjectBuildSetModel::addProjectItem( KDevelop::ProjectBaseItem* item ) |
| 310 | { |
| 311 | Q_D(ProjectBuildSetModel); |
| 312 | |
| 313 | BuildItem buildItem( item ); |
| 314 | if (d->items.contains(buildItem)) |
| 315 | return; |
| 316 | |
| 317 | insertItemWithCache( buildItem ); |
| 318 | } |
| 319 | |
| 320 | bool ProjectBuildSetModel::removeRows( int row, int count, const QModelIndex& parent ) |
| 321 | { |
no test coverage detected