| 19 | } |
| 20 | |
| 21 | Merger::MergeData::MergeData(const std::shared_ptr<const DiffList>& p, qint32 i) |
| 22 | { |
| 23 | idx = i; |
| 24 | pDiffList = p; |
| 25 | if(p != nullptr) |
| 26 | { |
| 27 | it = p->begin(); |
| 28 | update(); |
| 29 | } |
| 30 | } |
| 31 | |
| 32 | bool Merger::MergeData::eq() const |
| 33 | { |
nothing calls this directly
no outgoing calls
no test coverage detected