| 42 | } |
| 43 | |
| 44 | void QmitkPickingToolGUI::OnResetPicksClicked() |
| 45 | { |
| 46 | auto tool = this->GetConnectedToolAs<mitk::PickingTool>(); |
| 47 | if (nullptr != tool) |
| 48 | { |
| 49 | tool->ClearPicks(); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | void QmitkPickingToolGUI::OnRadioPickClicked(bool checked) |
| 54 | { |
nothing calls this directly
no test coverage detected