Fix stupid typo.

This commit is contained in:
Richard Heck 2012-07-10 17:11:37 -04:00
parent af322ba9b4
commit 17c5791454

View File

@ -226,7 +226,7 @@ docstring InsetWrap::xhtml(XHTMLStream & xs, OutputParams const & rp) const
{
string const len = params_.width.asHTMLString();
string const width = len.empty() ? "50%" : len;
string const attr = "class='wrap' style='width: " + len + ";'";
string const attr = "class='wrap' style='width: " + width + ";'";
xs << html::StartTag("div", attr);
docstring const deferred =
InsetText::insetAsXHTML(xs, rp, InsetText::WriteInnerTag);