| 104 | } |
| 105 | |
| 106 | void Session::setContainedProjects( const QList<QUrl>& projects ) |
| 107 | { |
| 108 | Q_D(Session); |
| 109 | |
| 110 | d->info.projects = projects; |
| 111 | d->info.config->group( cfgSessionOptionsGroup ).writeEntry( cfgSessionProjectsEntry, projects ); |
| 112 | d->updateDescription(); |
| 113 | } |
| 114 | |
| 115 | void Session::setTemporary(bool temp) |
| 116 | { |
no test coverage detected