| 53 | ControlSingleton::~ControlSingleton() = default; |
| 54 | |
| 55 | Gui::TaskView::TaskView* ControlSingleton::taskPanel() const |
| 56 | { |
| 57 | auto taskView = qobject_cast<Gui::TaskView::TaskView*>( |
| 58 | Gui::DockWindowManager::instance()->getDockWindow("Tasks") |
| 59 | ); |
| 60 | return taskView; |
| 61 | } |
| 62 | |
| 63 | void ControlSingleton::showDockWidget(QWidget* widget) |
| 64 | { |
no test coverage detected