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> 2002-05-04 Herbert Voss <voss@perce.de>
* InsetgraphicsParams.C (read): fix bug with WH * InsetgraphicsParams.C (read): fix bug with WH
@ -5,7 +9,7 @@
2002-05-05 Dekel Tsur <dekelts@tau.ac.il> 2002-05-05 Dekel Tsur <dekelts@tau.ac.il>
* insetfloat.C (latex): More sensible latex output * insetfloat.C (latex): More sensible latex output
(fix the problem with endfloat). (fix the problem with endfloat).
2002-05-02 José Matos <jamatos@fep.up.pt> 2002-05-02 José Matos <jamatos@fep.up.pt>
@ -66,7 +70,7 @@
* insettext.C (draw): call a fullRebreak on the row where we had a * insettext.C (draw): call a fullRebreak on the row where we had a
change and reset the cursor and selection-cursors. change and reset the cursor and selection-cursors.
* insettabular.C (insetUnlock): * insettabular.C (insetUnlock):
(insetButtonPress): call an update before setting the_locking_inset = 0 (insetButtonPress): call an update before setting the_locking_inset = 0
as otherwise we don't repaint! as otherwise we don't repaint!
(update): reset the cursor position when we changed dimensions as (update): reset the cursor position when we changed dimensions as
@ -97,7 +101,7 @@
2002-04-16 Juergen Vigna <jug@sad.it> 2002-04-16 Juergen Vigna <jug@sad.it>
* insettabular.C (insetButtonPress): * insettabular.C (insetButtonPress):
(insetUnlock): call a redraw on unlocking the cell inset. (insetUnlock): call a redraw on unlocking the cell inset.
* insettext.C (insetButtonPress): same as below. * insettext.C (insetButtonPress): same as below.
@ -173,7 +177,7 @@
2002-04-04 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr> 2002-04-04 Jean-Marc Lasgouttes <lasgouttes@freesurf.fr>
* insetfloatlist.C (getScreenLabel): * insetfloatlist.C (getScreenLabel):
(latex): use Floating::listName (latex): use Floating::listName
(validate): new method (validate): new method

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. // In this case, we do not case if the current output line is empty.
os << "\n\\end{" << tmptype << "}\n"; os << "\n\\end{" << tmptype << "}\n";
return i + 2; return i + 4;
} }