]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBibitem.cpp
Routines for calculating numerical labels for BibTeX citations.
[lyx.git] / src / insets / InsetBibitem.cpp
index 1e7d13972efc1e647230b383215ca8fdb3e35cfc..5eb0d448b4f646ef93430fcf7a3dcbda698eb1f8 100644 (file)
@@ -254,7 +254,7 @@ void InsetBibitem::fillWithBibKeys(BiblioInfo & keys, InsetIterator const & it)
 
 
 // Update the counters of this inset and of its contents
-void InsetBibitem::updateLabels(ParIterator const & it
+void InsetBibitem::updateLabels(ParIterator const & it, bool)
 {
        BufferParams const & bp = buffer().masterBuffer()->params();
        Counters & counters = bp.documentClass().counters();
@@ -279,7 +279,7 @@ docstring InsetBibitem::xhtml(XHTMLStream & xs, OutputParams const &) const
        // id into the span tag.
        string const attrs = "id='" + to_utf8(getParam("key")) + "'";
        xs << CompTag("a", attrs);
-       xs << StartTag("span", "class='biblabel'");
+       xs << StartTag("span", "class='bibitemlabel'");
        xs << bibLabel();
        xs << EndTag("span");
        return docstring();