| 342 | } |
| 343 | |
| 344 | int TextEditor::currentLineNumber() |
| 345 | { |
| 346 | auto num = SendScintilla(SCI_LINEFROMPOSITION, SendScintilla(SCI_GETCURRENTPOS)); |
| 347 | return static_cast<int>(num); |
| 348 | } |
| 349 | |
| 350 | void TextEditor::gotoLine(int line) |
| 351 | { |
no outgoing calls
no test coverage detected