mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
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:
parent
c12ed8ba76
commit
da3668dd98
@ -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,
|
// FIXME We also want to do something with the length info, etc,
|
||||||
// presumably as "style='...'".
|
// presumably as "style='...'".
|
||||||
os << from_ascii("<span class='" + params_.type + "'>\n");
|
os << from_ascii("<span class='" + params_.type + "'>\n");
|
||||||
InsetText::xhtml(os, runparams);
|
int ret = InsetText::xhtml(os, runparams);
|
||||||
os << "</span>\n";
|
os << "</span>\n";
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user