mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
Small optimization in Compare::Impl::equal().
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32916 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
833e7085dd
commit
5477b5a570
@ -354,17 +354,22 @@ bool equal(DocIterator & o, DocIterator & n) {
|
||||
Paragraph const & old_par = o.text()->getPar(o.pit());
|
||||
Paragraph const & new_par = n.text()->getPar(n.pit());
|
||||
|
||||
Inset const * i_o = old_par.getInset(o.pos());
|
||||
Inset const * i_n = new_par.getInset(n.pos());
|
||||
char_type const c_o = old_par.getChar(o.pos());
|
||||
char_type const c_n = new_par.getChar(n.pos());
|
||||
if (c_o != c_n)
|
||||
return false;
|
||||
|
||||
if (old_par.isInset(o.pos())) {
|
||||
Inset const * i_o = old_par.getInset(o.pos());
|
||||
Inset const * i_n = new_par.getInset(n.pos());
|
||||
|
||||
if (i_o && i_n)
|
||||
return equal(i_o, i_n);
|
||||
}
|
||||
|
||||
if (i_o && i_n)
|
||||
return equal(i_o, i_n);
|
||||
|
||||
char_type c_o = old_par.getChar(o.pos());
|
||||
char_type c_n = new_par.getChar(n.pos());
|
||||
Font fo = old_par.getFontSettings(o.buffer()->params(), o.pos());
|
||||
Font fn = new_par.getFontSettings(n.buffer()->params(), n.pos());
|
||||
return c_o == c_n && fo == fn;
|
||||
return fo == fn;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user