]> git.lyx.org Git - features.git/commitdiff
Fix compilation on win
authorPavel Sanda <sanda@lyx.org>
Sat, 6 Jun 2009 00:31:58 +0000 (00:31 +0000)
committerPavel Sanda <sanda@lyx.org>
Sat, 6 Jun 2009 00:31:58 +0000 (00:31 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@29976 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetBox.cpp

index 852bf94146cc0b8e8f79561db453218281b04540..9948e94e91804aa80fbe7b40acd943a4eb450e96 100644 (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;
 }