]> git.lyx.org Git - features.git/commitdiff
Add a comment.
authorRichard Heck <rgheck@comcast.net>
Fri, 30 Jul 2010 15:50:42 +0000 (15:50 +0000)
committerRichard Heck <rgheck@comcast.net>
Fri, 30 Jul 2010 15:50:42 +0000 (15:50 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@35036 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetCitation.cpp

index 9d2a4b1e16bb912e38fbfb377d5c352378596832..f9e1ac5abbabb65bbd7babb616543f4ed6a65612 100644 (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));
 }