| 383 | } |
| 384 | |
| 385 | void QmitkAbstractMultiWidget::ActivateMenuWidget(bool state) |
| 386 | { |
| 387 | for (const auto& renderWindowWidget : m_Impl->m_RenderWindowWidgets) |
| 388 | { |
| 389 | auto renderWindow = renderWindowWidget.second->GetRenderWindow(); |
| 390 | renderWindow->ActivateMenuWidget(state); |
| 391 | } |
| 392 | } |
| 393 | |
| 394 | bool QmitkAbstractMultiWidget::IsMenuWidgetEnabled() const |
| 395 | { |
nothing calls this directly
no test coverage detected