From: Richard Heck Date: Wed, 7 Sep 2011 22:25:25 +0000 (+0000) Subject: Fix bug #7721. We don't need to do anything here other than output X-Git-Tag: 2.1.0beta1~2744 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=c2d852643723aa171acaf8c498273312df824a00;p=features.git Fix 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/trunk@39634 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(); }