| 895 | } |
| 896 | |
| 897 | size_t UICodeEditor::getLineNumberDigits() const { |
| 898 | return eemax<size_t>( 2UL, Math::countDigits( (Int64)mDoc->linesCount() ) ); |
| 899 | } |
| 900 | |
| 901 | Float UICodeEditor::getLineNumberWidth() const { |
| 902 | return mShowLineNumber ? eeceil( getLineNumberDigits() * getGlyphWidth() + |
nothing calls this directly
no test coverage detected