whitespace and style

This commit is contained in:
Richard Kimberly Heck 2020-11-02 11:45:09 -05:00
parent 2945bc356e
commit cfd19d86be
4 changed files with 5 additions and 4 deletions

View File

@ -120,11 +120,12 @@ int AuthorList::record(Author const & a)
return it - beg;
if (it->bufferId() == a.bufferId()) {
int const id = it - beg;
if (!it->valid())
if (!it->valid()) {
// we need to handle the case of a valid author being registered
// after an invalid one. For instance, because "buffer-reload"
// does not clear the buffer's author list.
record(id, a);
}
return id;
}
}

View File

@ -358,7 +358,7 @@ public:
void expandFloatInsert(Buffer const * buf);
void expandFlexInsert(Buffer const * buf, InsetLayout::InsetLyXType type);
void expandTocSubmenu(std::string const & type, Toc const & toc_list);
void expandToc2(Toc const & toc_list, size_t from, size_t to, int depth, const string &toc_type);
void expandToc2(Toc const & toc_list, size_t from, size_t to, int depth, const string & toc_type);
void expandToc(Buffer const * buf);
void expandPasteRecent(Buffer const * buf);
void expandToolbars();