]> git.lyx.org Git - lyx.git/blobdiff - src/output_xhtml.cpp
Remove it for real now.
[lyx.git] / src / output_xhtml.cpp
index 1e57a28c45c0e25097fc1763b6f59c456c05a896..21894a2941cb99af660e5f37318e1a1a61850a31 100644 (file)
@@ -699,7 +699,7 @@ ParagraphList::const_iterator makeEnvironmentHtml(Buffer const & buf,
                                        openItemTag(xs, style);
                                        if (par == pbegin && style.htmllabeltag() != "NONE") {
                                                docstring const lbl = 
-                                                               pbegin->expandLabel(style, buf.params(), false);
+                                                               pbegin->expandLabel(style, buf.params());
                                                if (!lbl.empty()) {
                                                        openLabelTag(xs, style);
                                                        xs << lbl;
@@ -721,7 +721,7 @@ ParagraphList::const_iterator makeEnvironmentHtml(Buffer const & buf,
                                        else if (style.labeltype != LABEL_NO_LABEL
                                                 && style.htmllabeltag() != "NONE") {
                                                openLabelTag(xs, style);
-                                               xs << par->expandLabel(style, buf.params(), false);
+                                               xs << par->expandLabel(style, buf.params());
                                                closeLabelTag(xs, style);
                                                xs.cr();
                                        }