| 101 | } |
| 102 | |
| 103 | int DockedEditor::count() const |
| 104 | { |
| 105 | int total = 0; |
| 106 | |
| 107 | for (int i = 0; i < dockManager->dockAreaCount(); ++i) |
| 108 | total += dockManager->dockArea(i)->dockWidgetsCount(); |
| 109 | |
| 110 | return total; |
| 111 | } |
| 112 | |
| 113 | QVector<ScintillaNext *> DockedEditor::editors() const |
| 114 | { |
nothing calls this directly
no outgoing calls
no test coverage detected