| 70 | } |
| 71 | |
| 72 | void MainWindowPrivate::selectPrevItem() |
| 73 | { |
| 74 | auto actionListener = qobject_cast<IToolViewActionListener*>( |
| 75 | Core::self()->uiControllerInternal()->activeToolViewActionListener()); |
| 76 | if (actionListener) { |
| 77 | actionListener->selectPreviousItem(); |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | void MainWindowPrivate::selectNextItem() |
| 82 | { |
nothing calls this directly
no test coverage detected