From 1cdd1dc0c03e7d2c5f2dc406a84dbe8560978cf5 Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Mon, 18 Apr 2011 01:49:23 +0000 Subject: [PATCH] Remove pointless variable. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38431 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/output_xhtml.cpp | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/output_xhtml.cpp b/src/output_xhtml.cpp index 3a157c6f4d..bfabfd8bd7 100644 --- a/src/output_xhtml.cpp +++ b/src/output_xhtml.cpp @@ -925,7 +925,6 @@ void xhtmlParagraphs(Text const & text, ParagraphList::const_iterator par = paragraphs.begin(); ParagraphList::const_iterator pend = paragraphs.end(); - OutputParams ourparams = runparams; while (par != pend) { if (par->params().startOfAppendix()) { // FIXME: only the counter corresponding to toplevel @@ -943,13 +942,13 @@ void xhtmlParagraphs(Text const & text, // The files with which we are working never have more than // one paragraph in a command structure. // FIXME - // if (ourparams.html_in_par) + // if (runparams.html_in_par) // fix it so we don't get sections inside standard, e.g. // note that we may then need to make runparams not const, so we // can communicate that back. // FIXME Maybe this fix should be in the routines themselves, in case // they are called from elsewhere. - makeCommand(buf, xs, ourparams, text, par); + makeCommand(buf, xs, runparams, text, par); ++par; break; } @@ -958,18 +957,18 @@ void xhtmlParagraphs(Text const & text, case LATEX_ITEM_ENVIRONMENT: { // FIXME Same fix here. send = searchEnvironmentHtml(par, pend); - par = makeEnvironmentHtml(buf, xs, ourparams, text, par, send); + par = makeEnvironmentHtml(buf, xs, runparams, text, par, send); break; } case LATEX_BIB_ENVIRONMENT: { // FIXME Same fix here. send = searchEnvironmentHtml(par, pend); - par = makeBibliography(buf, xs, ourparams, text, par, send); + par = makeBibliography(buf, xs, runparams, text, par, send); break; } case LATEX_PARAGRAPH: send = searchParagraphHtml(par, pend); - par = makeParagraphs(buf, xs, ourparams, text, par, send); + par = makeParagraphs(buf, xs, runparams, text, par, send); break; } // FIXME?? -- 2.39.2