mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-29 13:04:58 +00:00
Just a bit of renaming.
This commit is contained in:
parent
262f58ddc3
commit
7ade656670
@ -655,7 +655,7 @@ inline void closeItemTag(XHTMLStream & xs, Layout const & lay)
|
|||||||
|
|
||||||
// end of convenience functions
|
// end of convenience functions
|
||||||
|
|
||||||
ParagraphList::const_iterator searchParagraphHtml(
|
ParagraphList::const_iterator searchParagraph(
|
||||||
ParagraphList::const_iterator p,
|
ParagraphList::const_iterator p,
|
||||||
ParagraphList::const_iterator const & pend)
|
ParagraphList::const_iterator const & pend)
|
||||||
{
|
{
|
||||||
@ -666,7 +666,7 @@ ParagraphList::const_iterator searchParagraphHtml(
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ParagraphList::const_iterator searchEnvironmentHtml(
|
ParagraphList::const_iterator searchEnvironment(
|
||||||
ParagraphList::const_iterator const pstart,
|
ParagraphList::const_iterator const pstart,
|
||||||
ParagraphList::const_iterator const & pend)
|
ParagraphList::const_iterator const & pend)
|
||||||
{
|
{
|
||||||
@ -775,7 +775,7 @@ bool isNormalEnv(Layout const & lay)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
ParagraphList::const_iterator makeEnvironmentHtml(Buffer const & buf,
|
ParagraphList::const_iterator makeEnvironment(Buffer const & buf,
|
||||||
XHTMLStream & xs,
|
XHTMLStream & xs,
|
||||||
OutputParams const & runparams,
|
OutputParams const & runparams,
|
||||||
Text const & text,
|
Text const & text,
|
||||||
@ -888,13 +888,13 @@ ParagraphList::const_iterator makeEnvironmentHtml(Buffer const & buf,
|
|||||||
// The other possibility is that the depth has increased, in which
|
// The other possibility is that the depth has increased, in which
|
||||||
// case we need to recurse.
|
// case we need to recurse.
|
||||||
else {
|
else {
|
||||||
send = searchEnvironmentHtml(par, pend);
|
send = searchEnvironment(par, pend);
|
||||||
par = makeEnvironmentHtml(buf, xs, runparams, text, par, send);
|
par = makeEnvironment(buf, xs, runparams, text, par, send);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case LATEX_PARAGRAPH:
|
case LATEX_PARAGRAPH:
|
||||||
send = searchParagraphHtml(par, pend);
|
send = searchParagraph(par, pend);
|
||||||
par = makeParagraphs(buf, xs, runparams, text, par, send);
|
par = makeParagraphs(buf, xs, runparams, text, par, send);
|
||||||
break;
|
break;
|
||||||
// Shouldn't happen
|
// Shouldn't happen
|
||||||
@ -1006,18 +1006,18 @@ void xhtmlParagraphs(Text const & text,
|
|||||||
case LATEX_LIST_ENVIRONMENT:
|
case LATEX_LIST_ENVIRONMENT:
|
||||||
case LATEX_ITEM_ENVIRONMENT: {
|
case LATEX_ITEM_ENVIRONMENT: {
|
||||||
// FIXME Same fix here.
|
// FIXME Same fix here.
|
||||||
send = searchEnvironmentHtml(par, pend);
|
send = searchEnvironment(par, pend);
|
||||||
par = makeEnvironmentHtml(buf, xs, ourparams, text, par, send);
|
par = makeEnvironment(buf, xs, ourparams, text, par, send);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case LATEX_BIB_ENVIRONMENT: {
|
case LATEX_BIB_ENVIRONMENT: {
|
||||||
// FIXME Same fix here.
|
// FIXME Same fix here.
|
||||||
send = searchEnvironmentHtml(par, pend);
|
send = searchEnvironment(par, pend);
|
||||||
par = makeBibliography(buf, xs, ourparams, text, par, send);
|
par = makeBibliography(buf, xs, ourparams, text, par, send);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case LATEX_PARAGRAPH:
|
case LATEX_PARAGRAPH:
|
||||||
send = searchParagraphHtml(par, pend);
|
send = searchParagraph(par, pend);
|
||||||
par = makeParagraphs(buf, xs, ourparams, text, par, send);
|
par = makeParagraphs(buf, xs, ourparams, text, par, send);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user