MCPcopy Create free account
hub / github.com/KDE/kdevelop / printRange

Function printRange

kdevplatform/language/codegen/documentchangeset.cpp:110–115  ·  view source on GitHub ↗

need to have it as otherwise the arguments can exceed the maximum of 10

Source from the content-addressed store, hash-verified

108
109// need to have it as otherwise the arguments can exceed the maximum of 10
110static 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
118DocumentChangeSet::DocumentChangeSet()

Callers 3

replaceOldTextMethod · 0.85
generateNewTextMethod · 0.85
removeDuplicatesMethod · 0.85

Calls 4

lineMethod · 0.45
startMethod · 0.45
columnMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected