X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCompare.cpp;h=68bd632d2d2bce02c65189eb5c2bf078a65312b8;hb=da67bde61af6dfecef7a237b72b878fe30638a81;hp=60a0b65bb14538d630ceda87873543b406b6d973;hpb=7b9dc7bc9e26b26d15ca4c3e5b2d0383ea97733f;p=lyx.git diff --git a/src/Compare.cpp b/src/Compare.cpp index 60a0b65bb1..68bd632d2d 100644 --- a/src/Compare.cpp +++ b/src/Compare.cpp @@ -439,8 +439,8 @@ static void getParagraphList(DocRange const & range, pit_type startpit = range.from.pit(); pit_type endpit = range.to.pit(); ParagraphList const & ps_ = range.text()->paragraphs(); - ParagraphList tmp_pars(lyx::next(ps_.begin(), startpit), - lyx::next(ps_.begin(), endpit + 1)); + ParagraphList tmp_pars(ps_.iterator_at(startpit), + ps_.iterator_at(endpit + 1)); // Remove the end of the last paragraph; afterwards, remove the // beginning of the first paragraph. Keep this order - there may only