| 587 | } |
| 588 | |
| 589 | void MainWindowPrivate::aboutToRemoveToolView(Sublime::View *toolView, Sublime::Position /*position*/) |
| 590 | { |
| 591 | if (!docks.contains(toolView)) |
| 592 | return; |
| 593 | |
| 594 | idealController->removeView(toolView); |
| 595 | // TODO are Views unique? |
| 596 | docks.removeAll(toolView); |
| 597 | } |
| 598 | |
| 599 | Qt::DockWidgetArea MainWindowPrivate::positionToDockArea(Position position) |
| 600 | { |
nothing calls this directly
no test coverage detected