| 79 | } |
| 80 | |
| 81 | void WorkingSetToolButton::mergeSet() |
| 82 | { |
| 83 | Q_ASSERT(m_set); |
| 84 | |
| 85 | const QSet<QString> loadFiles = m_set->fileSet() - Core::self()->workingSetControllerInternal()->workingSet(mainWindow()->area()->workingSet())->fileSet(); |
| 86 | for (const QString& file : loadFiles) { |
| 87 | Core::self()->documentController()->openDocument(QUrl::fromUserInput(file)); |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | void WorkingSetToolButton::duplicateSet() |
| 92 | { |
nothing calls this directly
no test coverage detected