| 27 | ManualDiffHelpList m_manualDiffHelpList; |
| 28 | |
| 29 | void 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 | |
| 43 | void printDiff3List(const Diff3LineList &diff3LineList, |
| 44 | const SourceData &sd1, |
no test coverage detected