| 126 | } |
| 127 | |
| 128 | static inline bool IsDiffPerLine(bool bTableEditing, const DIFFRANGE& cd) |
| 129 | { |
| 130 | const int LineLimit = 20; |
| 131 | return (bTableEditing || (cd.dend - cd.dbegin > LineLimit)) ? true : false; |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * @brief Returns rectangles to highlight in both views (to show differences in line specified) |
no outgoing calls
no test coverage detected