Add a comment.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35036 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2010-07-30 15:50:42 +00:00
parent 56c500bae5
commit 1c0514b07c

View File

@ -482,8 +482,13 @@ void InsetCitation::updateBuffer(ParIterator const &, UpdateType)
void InsetCitation::addToToc(DocIterator const & cpit)
{
// NOTE
// XHTML output uses the TOC to collect the citations
// from the document. So if this gets changed, then we
// will need to change how the citations are collected.
docstring const tocitem = getParam("key");
Toc & toc = buffer().tocBackend().toc("citation");
toc.push_back(TocItem(cpit, 0, getParam("key")));
toc.push_back(TocItem(cpit, 0, tocitem));
}