mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Minor code re-organization.
This commit is contained in:
parent
d8a31f1ee6
commit
400ee6824a
@ -4926,13 +4926,14 @@ void Buffer::Impl::setLabel(ParIterator & it, UpdateType utype) const
|
||||
break;
|
||||
}
|
||||
|
||||
// Increase the master counter?
|
||||
if (layout.stepmastercounter && needEnumCounterReset(it))
|
||||
counters.stepMaster(enumcounter, utype);
|
||||
|
||||
// Maybe we have to reset the enumeration counter.
|
||||
if (!layout.resumecounter && needEnumCounterReset(it))
|
||||
counters.reset(enumcounter);
|
||||
if (needEnumCounterReset(it)) {
|
||||
// Increase the master counter?
|
||||
if (layout.stepmastercounter)
|
||||
counters.stepMaster(enumcounter, utype);
|
||||
// Maybe we have to reset the enumeration counter.
|
||||
if (!layout.resumecounter)
|
||||
counters.reset(enumcounter);
|
||||
}
|
||||
counters.step(enumcounter, utype);
|
||||
|
||||
string const & lang = par.getParLanguage(bp)->code();
|
||||
|
Loading…
Reference in New Issue
Block a user