X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FCompare.cpp;h=1b46e6827d1674d6b454fb431d2332c6db3122a2;hb=eb0194081bd02a763b8c799b68f342ed81e14000;hp=60a0b65bb14538d630ceda87873543b406b6d973;hpb=084baebbf9895a49b150e9d6a9b4338b1dd58cdd;p=lyx.git diff --git a/src/Compare.cpp b/src/Compare.cpp index 60a0b65bb1..1b46e6827d 100644 --- a/src/Compare.cpp +++ b/src/Compare.cpp @@ -13,6 +13,7 @@ #include "Compare.h" #include "Author.h" +#include "Buffer.h" #include "BufferParams.h" #include "Changes.h" #include "CutAndPaste.h" @@ -23,7 +24,6 @@ #include "support/docstream.h" #include "support/lassert.h" -#include "support/lyxalgo.h" #include "support/qstring_helpers.h" using namespace std; @@ -103,11 +103,11 @@ public: DocPair() {} - DocPair(DocIterator o_, DocIterator n_) + DocPair(DocIterator const & o_, DocIterator const & n_) : o(o_), n(n_) {} - bool operator!=(DocPair const & rhs) + bool operator!=(DocPair const & rhs) const { // this might not be intuitive but correct for our purpose return o != rhs.o && n != rhs.n; @@ -232,7 +232,7 @@ public: /// Impl(Compare const & compare) : abort_(false), n_(0), m_(0), offset_reverse_diagonal_(0), - odd_offset_(0), compare_(compare), + odd_offset_(false), compare_(compare), old_buf_(nullptr), new_buf_(nullptr), dest_buf_(nullptr), dest_pars_(nullptr), recursion_level_(0), nested_inset_level_(0), D_(0) {} @@ -413,7 +413,6 @@ void Compare::run() static_cast(dest_buffer->inset()), el); finished(pimpl_->abort_); - return; } @@ -439,8 +438,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