| 123 | } |
| 124 | |
| 125 | QString Console::getCommand() const |
| 126 | { |
| 127 | QTextCursor cursor=textCursor(); |
| 128 | cursor.movePosition(QTextCursor::StartOfLine); |
| 129 | cursor.movePosition(QTextCursor::Right, QTextCursor::MoveAnchor, promptLength); |
| 130 | cursor.movePosition(QTextCursor::EndOfLine, QTextCursor::KeepAnchor); |
| 131 | QString command=cursor.selectedText(); |
| 132 | cursor.clearSelection(); |
| 133 | return command; |
| 134 | } |
nothing calls this directly
no outgoing calls
no test coverage detected