| 322 | } |
| 323 | |
| 324 | void MainWindowPrivate::toggleArea(bool b) |
| 325 | { |
| 326 | if (!b) return; |
| 327 | auto* action = qobject_cast<QAction*>(sender()); |
| 328 | if (!action) return; |
| 329 | m_mainWindow->controller()->showArea(action->data().toString(), m_mainWindow); |
| 330 | } |
| 331 | |
| 332 | KActionCollection * MainWindowPrivate::actionCollection() |
| 333 | { |
nothing calls this directly
no test coverage detected