| 939 | } |
| 940 | |
| 941 | void expand_times(AssDialogue *src, AssDialogue *dst) { |
| 942 | dst->Start = std::min(dst->Start, src->Start); |
| 943 | dst->End = std::max(dst->End, src->End); |
| 944 | } |
| 945 | |
| 946 | bool check_start(AssDialogue *d1, AssDialogue *d2) { |
| 947 | if (boost::starts_with(d1->Text.get(), d2->Text.get())) { |
no outgoing calls
no test coverage detected