| 290 | } |
| 291 | |
| 292 | void ProblemStore::setPathForDocumentsInPathScope(const QString& path) |
| 293 | { |
| 294 | Q_D(ProblemStore); |
| 295 | |
| 296 | d->m_pathForDocumentsInPathScope = path; |
| 297 | |
| 298 | if (d->m_documents->scope() == DocumentsInPath) { |
| 299 | static_cast<DocumentsInPathSet*>(d->m_documents)->setPath(path); |
| 300 | } |
| 301 | } |
| 302 | |
| 303 | QString ProblemStore::pathForDocumentsInPathScope() const |
| 304 | { |
no test coverage detected