need to have it as otherwise the arguments can exceed the maximum of 10
| 108 | |
| 109 | // need to have it as otherwise the arguments can exceed the maximum of 10 |
| 110 | static QString printRange(const KTextEditor::Range& r) |
| 111 | { |
| 112 | return i18nc("text range line:column->line:column", "%1:%2->%3:%4", |
| 113 | r.start().line(), r.start().column(), |
| 114 | r.end().line(), r.end().column()); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | DocumentChangeSet::DocumentChangeSet() |
no test coverage detected