| 418 | void calcDiff3LineListTrim(const std::shared_ptr<LineDataVector> &pldA, const std::shared_ptr<LineDataVector> &pldB, const std::shared_ptr<LineDataVector> &pldC, ManualDiffHelpList* pManualDiffHelpList); |
| 419 | |
| 420 | LineType recalcWordWrap(bool resetDisplayCount) |
| 421 | { |
| 422 | LineType sumOfLines = 0; |
| 423 | |
| 424 | for(Diff3Line& d3l: *this) |
| 425 | { |
| 426 | if(resetDisplayCount) |
| 427 | d3l.mLinesNeededForDisplay = 1; |
| 428 | |
| 429 | d3l.mSumLinesNeededForDisplay = sumOfLines; |
| 430 | sumOfLines += d3l.linesNeededForDisplay(); |
| 431 | } |
| 432 | |
| 433 | return sumOfLines; |
| 434 | } |
| 435 | |
| 436 | void debugLineCheck(const LineType size, const e_SrcSelector srcSelector) const; |
| 437 |
nothing calls this directly
no test coverage detected