From: Pavel Sanda Date: Sat, 6 Jun 2009 00:31:58 +0000 (+0000) Subject: Fix compilation on win X-Git-Tag: 2.0.0~6380 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=da3668dd984672b4ffdb14d565308a4961a2c7d6;p=features.git Fix compilation on win git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29976 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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; }