]> git.lyx.org Git - features.git/commitdiff
Now how do you think that happened?
authorRichard Heck <rgheck@comcast.net>
Mon, 18 Apr 2011 02:23:09 +0000 (02:23 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 18 Apr 2011 02:23:09 +0000 (02:23 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38433 a592a061-630c-0410-9148-cb99ea01b6c8

src/output_xhtml.cpp

index 3a157c6f4d68c781da5b7fe65c35a39351c27c71..bfabfd8bd7eddc69ff1b9f577d01bc47c2399db8 100644 (file)
@@ -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??