From da3668dd984672b4ffdb14d565308a4961a2c7d6 Mon Sep 17 00:00:00 2001 From: Pavel Sanda Date: Sat, 6 Jun 2009 00:31:58 +0000 Subject: [PATCH] Fix compilation on win git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29976 a592a061-630c-0410-9148-cb99ea01b6c8 --- src/insets/InsetBox.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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; } -- 2.39.2