| 256 | } |
| 257 | |
| 258 | void CodeEditor::updateSidebarGeometry() |
| 259 | { |
| 260 | setViewportMargins(sidebarWidth(), 0, 0, 0); |
| 261 | const auto r = contentsRect(); |
| 262 | sideBar->setGeometry(QRect(r.left(), r.top(), sidebarWidth(), r.height())); |
| 263 | } |
| 264 | |
| 265 | void CodeEditor::updateSidebarArea(const QRect &rect, int dy) |
| 266 | { |
nothing calls this directly
no outgoing calls
no test coverage detected