| 19 | using namespace KDevelop; |
| 20 | |
| 21 | WorkingSet* getSet(const QString& id) |
| 22 | { |
| 23 | if (id.isEmpty()) { |
| 24 | return nullptr; |
| 25 | } |
| 26 | |
| 27 | return Core::self()->workingSetControllerInternal()->workingSet(id); |
| 28 | } |
| 29 | |
| 30 | WorkingSetWidget::WorkingSetWidget(Sublime::Area* area, QWidget* parent) |
| 31 | : WorkingSetToolButton(parent, nullptr) |
no test coverage detected