MCPcopy Create free account
hub / github.com/KDE/kdiff3 / printDiffList

Function printDiffList

test/alignmenttest.cpp:29–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27ManualDiffHelpList m_manualDiffHelpList;
28
29void printDiffList(const QString caption, const DiffList &diffList)
30{
31 QTextStream out(stdout);
32 DiffList::const_iterator i;
33
34 out << "Printing difflist " << caption << ":" << endl;
35 out << " nofEquals, diff1, diff2" << endl;
36
37 for(i = diffList.begin(); i != diffList.end(); i++)
38 {
39 out << " " << i->numberOfEquals() << "," << i->diff1() << "," << i->diff2() << endl;
40 }
41}
42
43void printDiff3List(const Diff3LineList &diff3LineList,
44 const SourceData &sd1,

Callers 1

determineFileAlignmentFunction · 0.85

Calls 4

endMethod · 0.80
numberOfEqualsMethod · 0.80
diff1Method · 0.80
diff2Method · 0.80

Tested by

no test coverage detected