]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetBranch.cpp
* Fix merging of cells (multicolumn, multirow) when the first cell in the selection...
[lyx.git] / src / insets / InsetBranch.cpp
index 4888992ba7819da947374c016d5964b218c030ca..01d9cdcefe442a6f7917597f97e413cfc09698ac 100644 (file)
@@ -216,11 +216,8 @@ int InsetBranch::plaintext(odocstream & os,
        if (!isBranchSelected())
                return 0;
 
-       os << '[' << buffer().B_("branch") << ' ' << params_.branch << ":\n";
-       InsetText::plaintext(os, runparams);
-       os << "\n]";
-
-       return PLAINTEXT_NEWLINE + 1; // one char on a separate line
+       int len = InsetText::plaintext(os, runparams);
+       return len;
 }
 
 
@@ -234,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();
 }