diff --git a/src/insets/InsetBox.cpp b/src/insets/InsetBox.cpp index 852bf94146..9948e94e91 100644 --- a/src/insets/InsetBox.cpp +++ b/src/insets/InsetBox.cpp @@ -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("\n"); - InsetText::xhtml(os, runparams); + int ret = InsetText::xhtml(os, runparams); os << "\n"; + return ret; }