| 2406 | } |
| 2407 | |
| 2408 | DocumentLineRange UICodeEditor::getDocumentLineRange() const { |
| 2409 | auto visibleLineRange = getVisibleLineRange(); |
| 2410 | return DocumentLineRange( mDocView.getVisibleIndexPosition( visibleLineRange.first ).line(), |
| 2411 | mDocView.getVisibleIndexPosition( visibleLineRange.second ).line() ); |
| 2412 | } |
| 2413 | |
| 2414 | DocumentViewLineRange UICodeEditor::getVisibleLineRange() const { |
| 2415 | Float lineHeight = getLineHeight(); |
nothing calls this directly
no test coverage detected