return correct value

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4147 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Lars Gullik Bjønnes 2002-05-09 13:36:45 +00:00
parent 3935a1afee
commit fbccc15f8f
2 changed files with 9 additions and 5 deletions

View File

@ -1,3 +1,7 @@
2002-05-09 Dekel Tsur <dekelts@tau.ac.il>
* insetfloat.C (latex): Return correct value.
2002-05-04 Herbert Voss <voss@perce.de>
* InsetgraphicsParams.C (read): fix bug with WH

View File

@ -255,7 +255,7 @@ int InsetFloat::latex(Buffer const * buf,
// In this case, we do not case if the current output line is empty.
os << "\n\\end{" << tmptype << "}\n";
return i + 2;
return i + 4;
}