From: Richard Heck Date: Wed, 7 Sep 2011 22:28:34 +0000 (+0000) Subject: Backport fix for bug #7721. X-Git-Tag: 2.0.2~216 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b5c46118cacc1c708965f7e6f9aea88b9ac2d8b8;p=features.git 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 --- diff --git a/src/insets/InsetBranch.cpp b/src/insets/InsetBranch.cpp index c7a01ee360..01d9cdcefe 100644 --- a/src/insets/InsetBranch.cpp +++ b/src/insets/InsetBranch.cpp @@ -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(); } diff --git a/status.20x b/status.20x index d777fce3d1..947932667d 100644 --- a/status.20x +++ b/status.20x @@ -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