mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 13:18:28 +00:00
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:
parent
56c500bae5
commit
1c0514b07c
@ -482,8 +482,13 @@ void InsetCitation::updateBuffer(ParIterator const &, UpdateType)
|
|||||||
|
|
||||||
void InsetCitation::addToToc(DocIterator const & cpit)
|
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 & toc = buffer().tocBackend().toc("citation");
|
||||||
toc.push_back(TocItem(cpit, 0, getParam("key")));
|
toc.push_back(TocItem(cpit, 0, tocitem));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user