Backport fix for bug #7721.

We don't need to do anything here other than output our paragraphs.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@39635 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Richard Heck 2011-09-07 22:28:34 +00:00
parent e20673d484
commit b5c46118ca
2 changed files with 3 additions and 1 deletions

View File

@ -231,7 +231,7 @@ int InsetBranch::docbook(odocstream & os,
docstring InsetBranch::xhtml(XHTMLStream & xs, OutputParams const & rp) const
{
if (isBranchSelected())
return InsetText::xhtml(xs, rp);
xhtmlParagraphs(text(), buffer(), xs, rp);
return docstring();
}

View File

@ -61,6 +61,8 @@ What's new
- Fix problem where updates to children were not seen on output of master
(bug 7360).
- Fix XHTML export of branches (bug 7721).
* USER INTERFACE