| 1863 | } |
| 1864 | |
| 1865 | bool TextDocument::replaceCurrentLine( const String& text ) { |
| 1866 | return replaceLine( getSelection().start().line(), text ); |
| 1867 | } |
| 1868 | |
| 1869 | TextPosition TextDocument::nextChar( TextPosition position ) const { |
| 1870 | return positionOffset( position, 1 ); |
no test coverage detected