| 1027 | } |
| 1028 | |
| 1029 | QTextCursor OutputWidget::nextInsertAt() const |
| 1030 | { |
| 1031 | if (_solutionBuffer != nullptr) { |
| 1032 | QTextCursor cursor(_solutionBuffer); |
| 1033 | cursor.movePosition(QTextCursor::End); |
| 1034 | return cursor; |
| 1035 | } |
| 1036 | |
| 1037 | return _frame->lastCursorPosition(); |
| 1038 | } |
| 1039 | |
| 1040 | void OutputWidget::onBrowserContextMenu(const QPoint& pos) |
| 1041 | { |
nothing calls this directly
no outgoing calls
no test coverage detected