| 354 | } |
| 355 | |
| 356 | void mitk::LevelWindowManager::UpdateSelected(const itk::EventObject &) |
| 357 | { |
| 358 | if (m_LevelWindowMutex) // no mutex, should still help |
| 359 | { |
| 360 | return; |
| 361 | } |
| 362 | |
| 363 | m_DataNodesForLevelWindow.clear(); |
| 364 | if (m_SelectedImagesMode) |
| 365 | { |
| 366 | this->SetSelectedImages(true); |
| 367 | } |
| 368 | } |
| 369 | |
| 370 | void mitk::LevelWindowManager::SetLevelWindowProperty(LevelWindowProperty::Pointer levelWindowProperty) |
| 371 | { |
nothing calls this directly
no test coverage detected