]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetVSpace.cpp
Allow row-breaking after some insets
[lyx.git] / src / insets / InsetVSpace.cpp
index 4cdd1ba6edd37dfbdca46ea36db7e0770bbbefc8..24ea9aa63659b8c2a7fbbbf43789dd96dab637e8 100644 (file)
@@ -231,11 +231,11 @@ int InsetVSpace::docbook(odocstream & os, OutputParams const &) const
 }
 
 
-docstring InsetVSpace::xhtml(XHTMLStream & os, OutputParams const &) const
+docstring InsetVSpace::xhtml(XMLStream & os, OutputParams const &) const
 {
        string const len = space_.asHTMLLength();
        string const attr = "style='height:" + (len.empty() ? "1em" : len) + "'";
-       os << html::StartTag("div", attr, true) << html::EndTag("div");
+       os << xml::StartTag("div", attr, true) << xml::EndTag("div");
        return docstring();
 }