Fix compilation on win

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29976 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2009-06-06 00:31:58 +00:00
parent c12ed8ba76
commit da3668dd98

View File

@ -489,8 +489,9 @@ int InsetBox::xhtml(odocstream & os, OutputParams const & runparams) const
// FIXME We also want to do something with the length info, etc,
// presumably as "style='...'".
os << from_ascii("<span class='" + params_.type + "'>\n");
InsetText::xhtml(os, runparams);
int ret = InsetText::xhtml(os, runparams);
os << "</span>\n";
return ret;
}