| 26 | } |
| 27 | |
| 28 | QString rangeToString(const KTextEditor::Range& r) |
| 29 | { |
| 30 | return QStringLiteral("%1:%2->%3:%4").arg(r.start().line()).arg(r.start().column()).arg(r.end().line()).arg( |
| 31 | r.end().column()); |
| 32 | } |
| 33 | |
| 34 | class DumpDotGraphPrivate |
| 35 | { |
no test coverage detected