MCPcopy Create free account
hub / github.com/TypesettingTools/Aegisub / expand_times

Function expand_times

src/command/edit.cpp:941–944  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

939}
940
941void 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
946bool check_start(AssDialogue *d1, AssDialogue *d2) {
947 if (boost::starts_with(d1->Text.get(), d2->Text.get())) {

Callers 3

check_startFunction · 0.85
check_endFunction · 0.85
operator()Function · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected