]> git.lyx.org Git - lyx.git/blobdiff - src/Author.cpp
Fix some shortcut conflicts (bug 9008).
[lyx.git] / src / Author.cpp
index f4658e61269d020395d5e8d824d3be37ed86c2ce..6c608327e135c0d2e12ecc25569a2059af2ac640 100644 (file)
@@ -102,6 +102,7 @@ int AuthorList::record(Author const & a)
 
 void AuthorList::record(int id, Author const & a)
 {
+       // LASSERT: What should we do here?
        LASSERT(unsigned(id) < authors_.size(), /**/);
 
        authors_[id] = a;
@@ -117,6 +118,7 @@ void AuthorList::recordCurrentAuthor(Author const & a)
 
 Author const & AuthorList::get(int id) const
 {
+       // LASSERT: What should we do here?
        LASSERT(id < (int)authors_.size() , /**/);
        return authors_[id];
 }