| 565 | } |
| 566 | |
| 567 | void ScriptEditor::resizeEvent(QResizeEvent *e) |
| 568 | { |
| 569 | QPlainTextEdit::resizeEvent(e); |
| 570 | QRect cr = contentsRect(); |
| 571 | lineNumberArea->setGeometry(QRect(cr.left(), cr.top(), lineNumberAreaWidth(), cr.height())); |
| 572 | } |
| 573 | |
| 574 | void ScriptEditor::highlightCurrentLine() |
| 575 | { |
nothing calls this directly
no outgoing calls
no test coverage detected